A. Java.util.Map B. Java.util.Set C. Java.util.List D. Java.util.StoredSet E. Java.util.StoredMap F. Java.util.Collection
switch (i) { default: System.out.printIn(“Hello”); } What is the acceptable type for the variable i?()
A. Byte B. Long C. Float D. Double E. Object F. A and B G. C and D
int I=1, j=0 switch(i) { case 2: j+=6; case 4: j+=1; default: j +=2; case 0: j +=4; } What is the value of j at line 16?()
A. 0 B. 1 C. 2 D. 4 E. 6