Q. What is the output of the following code snippet?
Code:
String s1 = “Hello”; int i = 2; System.out.println(sA)charAt(i));
β
Correct Answer: (A)
l
Explanation: The charAt method in Java returns the character at a specified index in a string. In this case, sA)charAt(2) returns ‘l’.