33.
What will be the output of the following Java program?
class Output
{
    public static void main(String args[])
    {
  char a = (char) 98;
        a = Character.toUpperCase(a);
        System.out.print(a);
    }
}

39.
What will be the output of the following Java program?
class Output
{
    public static void main(String args[])
    {
        String str = "TRUE";
        boolean x = Boolean.valueOf(str);
        System.out.print(x);
    }
}

Read More Section(Interfaces and Abstract Classes)

Each Section contains maximum 100 MCQs question on Interfaces and Abstract Classes. To get more questions visit other sections.