ICSE Class 10 Computer Applications
Question 12 of 30
Solved Sample Paper 1 — Question 12
Back to all questions 12
Question Question 1(xii)
Which element is num[9] of array num?
- 8th
- 9th
- 10th
- 11th
10th
Reason — Array index begins from 0 to size - 1. Thus, num[0] is the 1st element, num[1] is the 2nd element, num[2] is the 3rd element and so on. So, num[9] is actually the 10th element of the array.