ICSE Class 10 Computer Applications Question 11 of 30

Solved 2024 Specimen Paper ICSE Class 10 Computer Applications — Question 11

Back to all questions
11
Question

Question 1(xi)

The output of "Remarkable".substring(6) is:

  1. mark
  2. emark
  3. marka
  4. able
Answer

able

Reason — "Remarkable".substring(6) will extract a substring starting from the character at index 6 (i.e., 7th character of the string) which is 'a' till the end of the string. Hence the output is able.