Font size
WorksheetsGCSE Computer Science Operators
Total questions: 15
Worksheet time: 6mins
Which operator means "Multiply"?
*
+
DIV
MULT
Which operator is used to divide, giving a number which could be a decimal?
DIV
MOD
/
//
Which operator tells you the remainder of a division?
/
MOD
DIV
//
Which operator gives the whole number from a division?
MOD
DIV
//
/
Which operator means "equal to" in Pseduocode?
==
=
<--
<>
When do you use the "arrow" and when do you use the "equals" sign?
The arrow is used to check if a value is "equal to"
The equals sign is used to set a variable
The equals sign is used to check if a value is "equal to"
The arrow is to declare a variable
5 > 10
TRUE
FALSE
22 MOD 5
1
2
3
4
17 DIV 7
2
3
4
1
(4 MOD 1) < (10 * 1)
TRUE
FALSE
(2 + 7) > (50 DIV 10)
TRUE
FALSE
(16 / 4) NOT (25 MOD 7)
TRUE
FALSE
20 _ _ _ 5 = 0
MOD
DIV
=
ADD
(15 NOT 7) OR (6 DIV 2 = 3)
TRUE
FALSE
((15 / 5) + (20 * 2) + (3 * 3) ) DIV 13 = ???
1
2
3
4
