class Output { public static void main(String args[]) { int a = Character.MIN_VALUE; System.out.print((char)a); } }
<
@
!
Correct Answer : Option (D)
class Output { public static void main(String args[]) { char a = (char) 98; a = Character.toUpperCase(a); System.out.print(a); } }
Correct Answer : Option (B)
Correct Answer : Option (A)
class Output { public static void main(String args[]) { String str = "true false true"; boolean x = Boolean.valueOf(str); System.out.print(x); } }
class Output { public static void main(String args[]) { double x = 3.14; int y = (int) Math.toDegrees(x); System.out.print(y); } }
class Output { public static void main(String args[]) { double x = 102; double y = 5; double z = Math.IEEEremainder(x, y); System.out.print(z);} } }
Correct Answer : Option (C)