A
B
C
D
E
What is the ASCII value of ‘b’?
A. 43
B. 98
C. 48
D. 66
E. 97
What is the output by the code below?
double num = 3.5;
System.out.println("Number: " + num);
A. 3.5
B. Number: 3.5
C. Number:
D. There is no output due to a syntax error.
E. There is no output due to a runtime error.