To access the 9th element in an array the ____ index is used.
A. (9)
B. [9]
C. (8)
D. [8]
Answer: C
Computer Science & Information Technology
You might also like to view...
The item that is removed first from a stack is called the ______ of the stack.
a. front b. top c. base d. prime
Computer Science & Information Technology
What is the value of choice after the following statements?
void getChoice(int& par_choice, in par_count); int choice, count=3; getChoice(choice, count); void getChoice(int& par_choice, in par_count) { if(par_count<0) par_choice =0; if(par_count = 0) par_choice=-1; else par_choice=99; return; } a. 3 b. 0 c. –1 d. 99
Computer Science & Information Technology