ICSE Class 10 Computer Applications Question 11 of 30

Solved Sample Paper 4 — Question 11

Back to all questions
11
Question

Question 1(xi)

Given array int x[ ] = {11, 22, 33, 44}; the value of x[1 + 2] is :

  1. 11
  2. 22
  3. 33
  4. 44
Answer

44

Reason — Array index starts from 0 to Size - 1. The value of x[1 + 2] equals x[3]. The value at index 3 is 44.