Vidyalelo
Java Programming · Q91

Data Types and Variables

Programming · Java Programming · question 91

Q91

What will be the output of the following Java code? class char_increment public static void main(String args[]) char c1 = 'D'; char c2 = 84; c2++; c1++; System.out.println(c1 + " " + c2);

A.
E U
Answer
B.
U E
C.
V E
D.
U F

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board