WorksheetsAmong Us Review Game
Total questions: 10
Worksheet time: 3hrs 30mins
Room 1 Question
z > y is true.
x > y is true.
x > 0 is true.
y != x is false.
x == y is false.
Room 2 Question
Expression I and expression II evaluate to different values for all values of A and B.
Expression I and expression II evaluate to the same value for all values of A and B.
Expression I and expression II evaluate to the same value only when A and B are the same.
Expression I and expression II evaluate to the same value only when A and B differ.
Expression I and expression II evaluate to the same value whenever A is true.
Room 3 Question
true always
false always
true only when x is true and y is true
true only when x and y have the same value
true only when x and y have different values
Room 4 Question
false
false
false
false
false
true
true
false
false
true
false
true
true
true
true
Room 5 Question
boolean b2 = (num > -100) && (num < 100);
boolean b2 = (num > -100) || (num < 100);
boolean b2 = (num < -100) || (num > 100);
boolean b2 = (num < -100) && (num > 0 || num < 100);
boolean b2 = (num < -100) || (num > 0 && num < 100);
Room 6 Question
bool2, bool4, and bool5 only.
bool2 and bool5 only.
bool3, bool4, and bool5 only.
bool3 and bool5 only.
bool1, bool2, bool3, bool4, and bool5
Room 7 Question
1
2
3
4
5
Room 8 Question
1, 15, 16
1, 2, 4
3, 4, 14
3, 11, 12
It is not possible to test all outputs.
Room 9 Question
Ignore new lines for answer.
Orange Blueberry Kiwi
Pear Orange Grape Blueberry Kiwi Cantaloupe Watermelon
Apple Orange Grape Blueberry Kiwi Cantaloupe Watermelon
Apple Orange Grape Blueberry Kiwi Watermelon Cherry
Pear Orange Grape Blueberry Kiwi Cherry
Room 10 Question
(x > 15) && (x == y)
(x > 15) && (x != y)
(x <= 15) && (x != y)
(x > 15) || (x == y)
(x <= 15) || (x != y)
