//What wouldprint to thescreen? System.out.print(17.0 + 5.0); evaluate thisexpressionx = 8;y = 6 + 3 * x;Order of operations is- (leftto right) parentheses,exponents, multiplicationand division and modulus,addition and subtraction,assignment operator (rightto left). Do you have an acronymfor remembering this? //True orfalse? double + int= double //What data type willthis print? System.out.println(54); evaluate thisexpressionx = 7;y = 8 + 4 * x; //What data type willthis print? System.out.println(“3”); Everyone inyour teamhas a "rubberduck" fordebugging!//True or false? x += y in Javais the same asx == x + y.  //What is the nameof this operator? =  //What is theanswer to thiscalculation?  15 % 4 = //What wouldprint to thescreen? System.out.print(17 % 5.0); //What wouldprint to thescreen? System.out.print(17.0 + 5.0); evaluate thisexpressionx = 8;y = 6 + 3 * x;Order of operations is- (leftto right) parentheses,exponents, multiplicationand division and modulus,addition and subtraction,assignment operator (rightto left). Do you have an acronymfor remembering this? //True orfalse? double + int= double //What data type willthis print? System.out.println(54); evaluate thisexpressionx = 7;y = 8 + 4 * x; //What data type willthis print? System.out.println(“3”); Everyone inyour teamhas a "rubberduck" fordebugging!//True or false? x += y in Javais the same asx == x + y.  //What is the nameof this operator? =  //What is theanswer to thiscalculation?  15 % 4 = //What wouldprint to thescreen? System.out.print(17 % 5.0); 

Bin-going virtual crazy! - Call List

(Print) Use this randomly generated list as your call list when playing the game. There is no need to say the BINGO column name. Place some kind of mark (like an X, a checkmark, a dot, tally mark, etc) on each cell as you announce it, to keep track. You can also cut out each item, place them in a bag and pull words from the bag.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  1. //What would print to the screen? System.out.print (17.0 + 5.0);
  2. evaluate this expression x = 8; y = 6 + 3 * x ;
  3. Order of operations is- (left to right) parentheses, exponents, multiplication and division and modulus, addition and subtraction, assignment operator (right to left). Do you have an acronym for remembering this?
  4. //True or false? double + int = double
  5. //What data type will this print? System.out.println(54);
  6. evaluate this expression x = 7; y = 8 + 4 * x ;
  7. //What data type will this print? System.out.println(“3”);
  8. Everyone in your team has a "rubber duck" for debugging!
  9. //True or false? x += y in Java is the same as x == x + y.
  10. //What is the name of this operator? =
  11. //What is the answer to this calculation? 15 % 4 =
  12. //What would print to the screen? System.out.print (17 % 5.0);