Computer Applications

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

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

Java Arrays

1 Like

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.

Answered By

3 Likes


Related Questions