python1

python1

KG - 4th Grade

10 Qs

quiz-placeholder

Similar activities

Python list and tuple

Python list and tuple

6th - 8th Grade

10 Qs

KS4 Programming Techniques (1)

KS4 Programming Techniques (1)

8th - 10th Grade

10 Qs

Python Code IF

Python Code IF

University

10 Qs

Phyton-1

Phyton-1

University

12 Qs

Python Fundamentals Quiz

Python Fundamentals Quiz

11th Grade

15 Qs

PCAP Module 4 Review

PCAP Module 4 Review

9th - 12th Grade

12 Qs

PCEP Section 2a: Make decisions  with if instruction

PCEP Section 2a: Make decisions with if instruction

12th Grade

15 Qs

Programming practices - C programming

Programming practices - C programming

University

9 Qs

python1

python1

Assessment

Quiz

Computers

KG - 4th Grade

Hard

Created by

jo denayer

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

x = 5

y = x

x = 6

what is y

5

6

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

a = 5

for x in range(10):

a = a if x != 0 else 0

What is the value of a at the end?

0

5

9

10

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

l1 = [1,2,3,4]

l2 = [1,2,3,4]

what will the following statement result in?

l1 is l2

True

False

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

10 // 3

0

10

3

1

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

x = 10

y = 5

if y == 5:

print('five')

elif x == 10:

print('ten')

elif y==5 and x == 10:

print('fifteen')

What gets printed?

'five'

'ten'

'fifteen'

all of the other answers together

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

def add():

x = 5

y = 8

val = x + x * y

Calling this function returns?

80

45

Nothing

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

what is the data type of the following?

aTuple = (1,'Jhon', 1+3j)

print(type(aTuple[2:3]))

list

complex

tuple

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?