117k views
2 votes
Suppose the String s is declared and initialized as follows:

String s = "elementary";

What String would be returned by the method call s.substring(2, 6);?

1 Answer

1 vote

Final answer:

Calling s.substring(2, 6) on the String "elementary" returns the substring "emen", which starts at index 2 and ends just before index 6 of the String.

Step-by-step explanation:

If the String s is declared and initialized as String s = "elementary";, the method call s.substring(2, 6); would return the

substring of s starting at index 2 and ending just before index 6.

In Java, the substring method starts at the specified beginIndex and extends to the character at endIndex - 1.

Therefore, the substring that would be returned from s in this case is "emen".

User Marco Bonelli
by
7.0k points