A
Q. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
char a[] = {'a', '5', 'A', ' '};
System.out.print(Character.isDigit(a[0])+ " ");
System.out.print(Character.isWhitespace(a[3])+ " ");
System.out.print(Character.isUpperCase(a[2]));
}
}
- Correct Answer - Option(B)
- Views: 15
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.