Q. Determine output:
public class Test{
public static void main(String args[]){
String s1 = "SITHA";
String s2 = "RAMA";
System.out.println(s1.charAt(0) > s2.charAt(0));
}
}
public class Test{
public static void main(String args[]){
String s1 = "SITHA";
String s2 = "RAMA";
System.out.println(s1.charAt(0) > s2.charAt(0));
}
}
β
Correct Answer: (A)
true
Explanation: Output will be True. Since when s1.charAt(0) ascii value is greater then s2.charAt(0). So it will return True.