1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

51
Review Operation Bingo 1

description

A: double 3

Transcript of 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

Page 1: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

Review Operation Bingo

1

Page 2: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

2

3.0 + 4.0

A: 7.0

1. What is the result of:

Page 3: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

3

2. What is the data type of:

3.0 + 4

A: double

Page 4: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

4

3 + “4”

A: “34”

3. What is the result of:

Page 5: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

5

10 / 3

A: 3

4. What is the result of:

Page 6: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

6

5 % 7

A: 5

5. What is the result of:

Page 7: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

7

7 % 5

A: 2

6. What is the result of:

Page 8: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

8

7 / 5

A: 1

7. What is the result of:

Page 9: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

9

1.0 – 5

A: double

8. What is the data type of:

Page 10: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

10

1.0 – 5

A: -4

9. What is the result of:

Page 11: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

11

“CS” + 13 + 9

A: String

10. What is the data type of:

Page 12: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

12

“CS” + 13 + 9

A: “CS139”

11. What is the result of:

Page 13: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

13

5 / 7

A: int

12. What is the data type of:

Page 14: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

14

5 / 7

A: 0

13. What is the result of:

Page 15: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

15

294 % 7 / 50.0

A: 0.0

14. What is the result of:

Page 16: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

16

294 % 7 / 50.0

A: double

15. What is the data type of:

Page 17: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

17

Math.PI

A: 3.14 (to two decimal places)

16. What is the result of:

Page 18: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

18

Math.PI

A: double

17. What is the data type of:

Page 19: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

19

17 / 25 * 1.0

0.0

18. What is the result of:

Page 20: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

20

1.0 + 7 % 2519. What is the result of:

Page 21: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

21

7 / 3 * 6.0 / 220. What is the result of:

Page 22: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

22

true && false21. What is the result of:

Page 23: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

23

false || true22. What is the result of:

Page 24: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

24

false || true

23. What is the data type of:

Page 25: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

25

‘a’ < ‘b’

A: true

24. What is the result of:

Page 26: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

26

x != x25. What is the result of:

Page 27: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

27

5 == ‘5’26. What is the result of:

Page 28: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

28

‘a’ < ‘b’ || ‘X’ > ‘Y’27. What is the result of:

Page 29: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

29

x == 3 && x == 528. What is the result of:

Page 30: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

30

x != 3 || x != 529. What is the result of:

Page 31: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

31

“Pinto”.equals(“Mustang”)

A: boolean

30. What is the data type of:

Page 32: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

32

3 + ( 6 + “4”)

A: String

31. What is the data type of:

Page 33: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

33

3 + ( 6 + “4”)

A: “364”

32. What is the result of:

Page 34: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

34

“String 1”.compareTo(“Me”)

A: int

33. What is the data type of:

Page 35: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

35

10 / 3.0

A: 3.33 (two decimals)

34. What is the result of:

Page 36: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

36

10.0 / 3.0

3.33 (two decimals)

35. What is the result of:

Page 37: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

37

3 + 6 + “4”

A: “94”

36. What is the result of:

Page 38: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

38

2.0 * (17 / 25)

A: double

37. What is the data type of:

Page 39: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

39

2.0 * (17 / 25)

A: 0.0

38. What is the result of:

Page 40: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

40

17 % 25

A: 17

39. What is the result of:

Page 41: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

41

3 * 0 + 7.0

A: 7.0

40. What is the result of:

Page 42: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

42

3 * 0 + 7.0

A: double

41. What is the data type of:

Page 43: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

43

3.0 + 5 + “”

A: “8.0”

42 What is the result of:

Page 44: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

44

3.0 + 5 + “”

A: String

43. What is the data type of:

Page 45: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

45

3 * 7.0 / 1 <= 17

A: boolean

44. What is the data type of:

Page 46: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

46

49 % 7 + 3 + 4

A: 7

45. What is the result of:

Page 47: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

47

(int) (6.0 + 7) % 3

A: int

46. What is the data type of

Page 48: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

48

(int) (6.0 + 7) % 3

A: 1

47. What is the result of

Page 49: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

49

(double) 12 / 4

A: 3.0

48. What is the result of

Page 50: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

50

(double) 12 / 4

A: double

49. What is the data type of

Page 51: 1. 3.0 + 4.0 A: 7.0 2 3.0 + 4 A: double 3 3 + “4” A: “34” 4.

51

5 – 1.0

A: -4.0

50. What is the result of: