1.

What is the output of this program?

class output {
public static void main(String args[])
{
char a = 'A';
a++;
System.out.print((int)a);
}
}

A. 61
B. 64
C. 65
D. 63
E. 66
Answer» F.


Discussion

No Comment Found

Related MCQs