What is the output of this program?

class Literal12
{
public static void main(String[] args)
{
boolean b=True;
System.out.println(b);
}
}
/*
Output:- CE[cannot find symbol]
Explanation:- The only allowed value for boolean data type are "true" and "false" and it must
be in lower case letter.

*/

0 comments: