Sail E0 Webinar
Question

Which of the following statements are correct about 6 used in the program?
int num[6];
num[6]=21;


Options:
A .  In the first statement 6 specifies a particular element, whereas in the second statement it specifies a type.
B .  In the first statement 6 specifies a particular element, whereas in the second statement it specifies a type.
C .  In the first statement 6 specifies a particular element, whereas in the second statement it specifies a array size.
D .  In both the statement 6 specifies array size.
Answer: Option B

The statement 'B' is correct, because int num[6]; specifies the size of array and num[6]=21;

designates the particular element(7th element) of the array.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers