P
Q. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
char a = '@';
boolean x = Character.isLetter(a);
System.out.print(x);
}
}
- Correct Answer - Option(B)
- Views: 96
- Filed under category JAVA
Discusssion
Login to discuss.