MCQ
Single Best Answer
Moderate
QWhat is the output of the following code?
int a[3] = {10, 20, 30};
cout << a[1];
ID: #24497
Array in C++
35 views
Question Info
#24497Q ID
ModerateDifficulty
Array in C++Topic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer: Option B
Explanation
In C++, array indexing starts from 0.
int a[3] = {10, 20, 30};
Index-wise values:
-
a[0] = 10 -
a[1] = 20 -
a[2] = 30
The statement:
cout << a[1];
prints the value at index 1, which is 20.
Correct Answer: B) 20
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic