Understanding Modulo in Python

Understanding Modulo in Python

Assessment

Interactive Video

10th Grade

Hard

Created by

Catherine L Hulcher

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In programming the modulo operation finds what of the division of one number by another

positive numbers

remainder

negative numbers

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What symbol represents modulo

%

/

+

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

5 % 2 = 1

1 is 

a remainder

a divisor

an apple

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

5 % 3 will equal

5

3

2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

10 % 3

1

0

3

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If a number perfectly divides into another number

the remainder is 0

the remainder is 1

the remainder is 2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

3 % 0

would throw an error

would work in python

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

2 % 10

0

10

2

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In modulo math the results will always be a 

whole integer

negative

0