What does this expression evaluate to: 2 * (3 + 4)
Answer: ______________
// keeps only the remainder of a division.
Circle one: True False
That same stopwatch shows 125 seconds. After you take out the full minutes, how many seconds are left over? (Hint: find 125 % 60.)
Answer: ______________
True or false: in the expression 2 * 3 + 4, the multiplication runs before the addition.
Circle one: True False
A timer holds 200 seconds. How many leftover seconds does 200 % 60 give?
Answer: ______________
What is the value of 2 * (3 + 4)?
A song lasts 197 seconds. How many seconds are left over after counting out full minutes? (Hint: find 197 % 60.)
Answer: ______________
You have 53 stickers to hand out in packs of 6. Using integer division, how many full packs of 6 can you make? (Hint: find 53 // 6.)
Answer: ______________
A cutscene lasts 137 seconds. How many whole minutes does 137 // 60 give?
Answer: ______________
What is the value of (5 + 3) * 2 - 4?