Q116
What will be the output of the following Java code? class asciicodes public static void main(String args[]) char var1 = 'A'; char var2 = 'a'; System.out.println((int)var1 + " " + (int)var2);
A.
162
B.
65 97
AnswerC.
67 95
D.
66 98
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board