Python Math

Python Math

Assessment

Flashcard

Created by

Quizizz Content

Computers

9th - 12th Grade

Hard

Student preview

quiz-placeholder

10 questions

Show all answers

1.

FLASHCARD

Front

In python, what is printed
num = 3 + 5
print(num)

Back

8

2.

FLASHCARD

Front

In python, what is printed
x = 3 + 5.0
print(x)

Back

8.0

3.

FLASHCARD

Front

In python, what is printed
number = 3. + 5
print(number)

Back

8.0

4.

FLASHCARD

Front

In python, what is printed
n = 5.0 - 3
print(n)

Back

2.0

5.

FLASHCARD

Front

In python, what is printed
answer = 8 / 4
print(answer)

Back

2.0

6.

FLASHCARD

Front

In python, what is printed
x = 9 // 4
print(x)

Back

2

7.

FLASHCARD

Front

In python, what is printed
num = 3 * 4
print(num)

Back

12

8.

FLASHCARD

Front

In python, what is printed
number = 3.0 * 4
print(number)

Back

12.0

9.

FLASHCARD

Front

In python, what is printed
n = 17 % 4
print(n)

Back

1

10.

FLASHCARD

Front

In python, what is printed
answer = 16 % 4
print(answer)

Back

0

Explore all questions with a free account

or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?