Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

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);
}
}

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);
}
}
a) true
b) false
c) @
d) B

Answer: b
Explanation:
Output:
false

Join The Discussion