ICSE Class 10 Computer Applications Question 10 of 10

Solved 2022 Semester 2 Question Paper ICSE Class 10 Computer Applications — Question 10

Back to all questions
10
Question

Question 1(x)

What will be the output of the following code?

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

  1. Lucknow
  2. Luckn
  3. Luck
  4. luck
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.