Computer Science, asked by bhowmicksneha2005, 3 months ago

What will be the output of the following code?

(i) char x = ’A’; int M;

M = (x == ‘a’)? ‘A’: ‘a’;

System.out.println(a);​

Answers

Answered by Omprasad1234567890
3

Answer:

output

char a = 65 ;

because value of acsii code for a is 65

Similar questions