Array in C++ Array in C++ Question #24492
MCQ Single Best Answer Moderate

QWhat is the last index of an array declared as int a[5];?

ID: #24492 Array in C++ 32 views
Question Info
#24492Q ID
ModerateDifficulty
Array in C++Topic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 5
  • B 4
  • D 6
Correct Answer: Option B

Explanation

In C++, array indexing starts from 0.

For the array:

int a[5];
  • Total elements = 5

  • Index values = 0, 1, 2, 3, 4

So, the last index is 4, not 5.

Correct Answer: B) 4

Description:
The highest index of an array is always size − 1.

Share This Question

Challenge a friend or share with your study group.