Q. what is the output of below java program?
Code:
public class Main
{
public static void main(String[] args) {
int a = 'a';
System.out.print(a);
}
}
β
Correct Answer: (B)
97