Python pre-assessment

Python pre-assessment

Assessment

Flashcard

Computers

8th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

20 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the output?
a = 10
b = "python"
c = a
print(b, c, a)

Back

python 10 10

2.

FLASHCARD QUESTION

Front

What is the output?
a = 2
b = "Welcome"
c = a
print(b, c, a)

Back

Welcome 2 2

3.

FLASHCARD QUESTION

Front

What is the output?
print(3 + 6 - 1 * 3)

Back

6

4.

FLASHCARD QUESTION

Front

What is the value of x? a = 3, b = 2, c = 1, x = (a > b) and (c > b)

Back

False

5.

FLASHCARD QUESTION

Front

What is the value of f? a = 5, b = 4, c = 1, f = a+b > b+3 or b*2 < a+1

Back

True

6.

FLASHCARD QUESTION

Front

Which of the following options will produce the same result as the given code? Options: , , , None of the above

Back

None of the above

7.

FLASHCARD QUESTION

Front

What is the output?
for i in range(3):
print(i * 2)

Back

0
2
4

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?