Search⌘ K
AI Features

Quiz: String Algorithms

Practice and reinforce key string concepts through quiz questions.

We'll cover the following...

String Algorithms

1.

What is the output of the following code?

public class Main {
    public static void main(String[] args) {
        String s = "bless";
        System.out.println(s.charAt(s.length() - 2));
    }
}
A.

b

B.

l

C.

e

D.

s


1 / 5
...