Home »
MCQs »
C++ MCQs
Can we access the elements of an array outside the bound?
117. Can we access the elements of an array outside the bound?
- Yes
- No
Answer: B) NO
Explanation:
No, we cannot access the elements of an array outside the bound in C++. It can generate logical and runtime errors.