ICSE Class 10 Computer Applications
Question 30 of 30
Solved 2025 Specimen Paper ICSE Class 10 Computer Applications — Question 30
Back to all questions(a) The position of 34 is x[2][0]
(b) x[2][3] + x[1][2] = 9 + 8 = 17
Explanation:
(a) Position of 34
- The array
xis a 2D array, where elements are accessed using row and column indices. - The element
34is located in the 3rd row and 1st column. - In zero-based indexing:
- Row index:
2 - Column index:
0
- Row index:
Position: x[2][0]
(b) Result of x[2][3] + x[1][2]
Step 1: Locate x[2][3]
x[2][3]refers to the element in the 3rd row and 4th column.- Value at
x[2][3]=9.