KnowledgeBoat Logo

Computer Applications

What will be the output of the following code?

System.out.println("Lucknow".substring(0,4));

  1. Lucknow
  2. Luckn
  3. Luck
  4. luck

Java String Handling

ICSE 2022

2 Likes

Answer

Luck

Reason — The substring() method returns a substring beginning from the startindex and extending to the character at index endIndex - 1. Since a string index begins at 0, the character at startindex (0) is 'L' and the character at the endIndex (4-1 = 3) is 'k'. Thus, "Luck" is extracted and printed on the screen.

Answered By

1 Like


Related Questions