किसी सरणी के 10वें तत्व "a" को ___________ के रूप में एक्सेस किया जा सकता है
The 10th element of an array “a‟ can be accessed as ___________
A)
B)
C)
D)
Explanation:
In C and many other programming languages, array indices start from 0. So, the 10th element of the array would be accessed at index 9.
Correct Answer:
(B) a[9].