quize for part 1
- Question 1: Which of the following are not reserved words in Java? [
Check all correct answers]
- transient
- include
- goto
- union
- Question 2: What is the range of values that can be stored in a byte
primitive variable?
- 0 to 255
- -127 to 128
- -128 to 127
- Question 3: How many String objects are created in the following
code?
- String A,B,C;
- A = "1234";
- B = A;
- C = A + B;
- 1
- 2
- 3
- 4
|