1. Which one of these lists contains only Java programming language keywords?

A. class, if, void, long, Int, continue
B. goto, instanceof, native, finally, default, throws
C. try, virtual, throw, final, volatile, transient
D. strictfp, constant, super, implements, do


Answer Option B

2.Which will legally declare, construct, and initialize an array?

A. int [] myList = {"1", "2", "3"};
B. int [] myList = (5, 8, 2);
C. int myList [] [] = {4,9,7,0};
D. nt myList [] = {4, 3, 7};


Answer Option D

3.Which is a reserved word in the Java programming language?

A. method
B. Subcalss
C. array
D. reference


Answer Option B

4.Which is a valid keyword in java?

A. Interface
B. Float
C. Unsigned
D. String


Answer Option A