Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Among Us Review Game

Total questions: 10

Worksheet time: 3hrs 30mins

Name
Class
Date
1.

Room 1 Question

a)

z > y is true.

b)

x > y is true.

c)

x > 0 is true.

d)

y != x is false.

e)

x == y is false.

2.

Room 2 Question

a)

Expression I and expression II evaluate to different values for all values of A and B.

b)

Expression I and expression II evaluate to the same value for all values of A and B.

c)

Expression I and expression II evaluate to the same value only when A and B are the same.

d)

Expression I and expression II evaluate to the same value only when A and B differ.

e)

Expression I and expression II evaluate to the same value whenever A is true.

3.

Room 3 Question

a)

true always

b)

false always

c)

true only when x is true and y is true

d)

true only when x and y have the same value

e)

true only when x and y have different values

4.

Room 4 Question

a)

false

false

false

b)

false

false

true

c)

true

false

false

d)

true

false

true

e)

true

true

true

5.

Room 5 Question

a)

boolean b2 = (num > -100) && (num < 100);

b)

boolean b2 = (num > -100) || (num < 100);

c)

boolean b2 = (num < -100) || (num > 100);

d)

boolean b2 = (num < -100) && (num > 0 || num < 100);

e)

boolean b2 = (num < -100) || (num > 0 && num < 100);

6.

Room 6 Question

a)

bool2, bool4, and bool5 only.

b)

bool2 and bool5 only.

c)

bool3, bool4, and bool5 only.

d)

bool3 and bool5 only.

e)

bool1, bool2, bool3, bool4, and bool5

7.

Room 7 Question

a)

1

b)

2

c)

3

d)

4

e)

5

8.

Room 8 Question

a)

1, 15, 16

b)

1, 2, 4

c)

3, 4, 14

d)

3, 11, 12

e)

It is not possible to test all outputs.

9.

Room 9 Question

Ignore new lines for answer.

a)

Orange Blueberry Kiwi

b)

Pear Orange Grape Blueberry Kiwi Cantaloupe Watermelon

c)

Apple Orange Grape Blueberry Kiwi Cantaloupe Watermelon

d)

Apple Orange Grape Blueberry Kiwi Watermelon Cherry

e)

Pear Orange Grape Blueberry Kiwi Cherry

10.

Room 10 Question

a)

(x > 15) && (x == y)

b)

(x > 15) && (x != y)

c)

(x <= 15) && (x != y)

d)

(x > 15) || (x == y)

e)

(x <= 15) || (x != y)