Consider the following declaration: int alpha[5] = {3, 5, 7, 9, 11};. Which of the following is equivalent to this statement?

A. int alpha[] = {3, 5, 7, 9, 11};
B. int alpha[] = {3 5 7 9 11};
C. int alpha[5] = [3, 5, 7, 9, 11];
D. int alpha[] = (3, 5, 7, 9, 11);


Answer: A

Computer Science & Information Technology

You might also like to view...

The sequence in which packets are received at the destination can be different from the sequence in which they are sent.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which of the following kinds of operating systems allow only one user to run one program or app at a time?

A. single user/single throttle B. single user/single function C. single user/single indexing D. single user/single tasking

Computer Science & Information Technology

A browser on any device is capable of rendering any page written in HTML and CSS.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A Short data type is used for a very short string value of 10 bytes or less.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology