Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Which of the following accesses the seventh element stored in array?

a) array[6];
b) array[7];
c) array(7);
d) array;

Answer: a
Explanation: The array location starts from zero, So it can accessed by array[6].

Join The Discussion