Vidyalelo
Java Programming · Q233

Interfaces and Abstract Classes

Programming · Java Programming · question 233

Q233

What will be the output of the following Java program? class Output public static void main(String args[]) char a = (char) 98; a = Character.toUpperCase(a); System.out.print(a);

A.
b
B.
c
C.
B
Answer
D.
C

Answer: Option C

Solution

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