Multiple Choice Question

Quiz Guidelines

 

QID: 
126
Question: 

Which of the following statements will compile without any error?

Select 4 options

A. System.out.println("a"+'b'+63);
B. System.out.println("a"+63);
C. System.out.println('b'+new Integer(63));
D. String s = 'b'+63+"a"; 
E. String s = 63 + new Integer(10);

Q&A Set: