Write the output of the following statements: System.out.println(ch[0]*2);:char ch[] = { 'A', 'E', 'T', '0', 'U' };
char ch[] = { 'A', 'E', 'T', '0', 'U' };
System.out.println(ch[0] * 2);
ch[0]ch[0] → 'A'
In Java, char is a numeric type under the hood (Unicode value)
Unicode of 'A' → 65
ch[0] * 2 = 65 * 2 = 130
Since we are using arithmetic, the result is int, not char.
So it prints 130
✅ Answer: (b) 130