Chapter 2: Primitive Data Types and Operations 1. You can define a constant twice in a block. # 2. You can define a variable twice in a block. # 3. The value of a variable can be changed. # 4. The result of an integer division is the integer part of the division; the fraction part is truncated. # 5. You can always assign a value of int type to a variable of long type without loss of information. # 6. You can always assign a value of long type to a variable of int type without loss of precision. # 7. The && and & operators are identical. # 8. You can cast a Boolean value to an int. # 9. You can cast a character value to an int. # 10. The exclusive or (^) of true and true is true. # 11. A variable may be assigned a value only once in the program. # 12. You can change the value of a constant. & End of the questions. Answers begins 1. F 2. F 3. T 4. T 5. T 6. F 7. F 8. F 9. T 10. F 11. F 12. F