wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

AQA 8520 3.2.3 Quiz

Total questions: 21

Worksheet time: 7mins

Name
Class
Date
1.
What does the MOD function return?
a)
Quotient Only
b)
Remainder Only
c)
Quotient and Remainder
d)
None of the above
2.
What does the DIV function return?
a)
Quotient Only
b)
Remainder Only
c)
Quotient and Remainder
d)
None of the above
3.
Which of these is NOT an arithmetic operation?
a)
*
b)
//
c)
%
d)
~
4.
When two integers are divided, what is more likely to be the data type of the result?
a)
Integer
b)
String
c)
Float
d)
Boolean
5.
How many values does integer division return?
a)
1
b)
2
c)
3
d)
4
6.
What order do computers perform arithmetic problems involving multiple operations?
a)
BODMAS
b)
BOMDAS
c)
BIDMAS
d)
QODMAS
7.
True or False: '=' is the same as '=='
a)
true
b)
false
8.
What are the 2 kinds of decimals that a computer recognises and uses?
a)
Fixed Point
b)
Recurring
c)
Floating Point
d)
Terminating
9.
What is the exponentiation operator in Python?
a)
++
b)
^
c)
**
10.
What's a real number in computing?
a)
Any complex number
b)
Any whole number
c)
Any positive or negative numbers (whole or not)
d)
Any negative number (whole or not)
11.

Fill in the blank: Real whole numbers are called (a)  

12.
What does ≠ mean?
a)
Equal to
b)
Not equal to
c)
Smaller than
d)
Greater than but not equal to
13.
Evaluate this pseudocode: a = 2, b = 7, z = 14, IF (z+b) = a, RETURN True ELSE Return FALSE
a)
true
b)
false
14.
Evaluate this pseudocode : a = 7 , b = -2, IF b > a, RETURN True ELSE Return FALSE
a)
true
b)
false
15.
What does a > b mean?
a)
A is greater than B
b)
A is smaller than B
c)
C is exponentially smaller than B + A
d)
I don't know
16.
What does z = b mean?
a)
A is greater than B
b)
A is smaller than B
c)
Z is equal to A
d)
Z is equal to B
17.
What does z < b mean?
a)
Z is greater than B
b)
Z is smaller than B
c)
I don't know
d)
Requires a calculator
18.
Evaluate this pseudocode : a = 6 , f = -2, IF f > a, RETURN True ELSE Return FALSE
a)
true
b)
false
19.
What does d ≠ b mean?
a)
D is equal to B
b)
B is smaller than D
c)
B is not equal to D
d)
No clue
20.
If z >= b and b = 0, what is the minimum value of z?
a)
1
b)
3
c)
-1
d)
0
21.
If z <= b and b = 1, what is the maximum value of z?
a)
2
b)
3
c)
1
d)
-5