Which of the following creates an array of five book titles?

A. var bookTitles = new Array(5);
B. var bookTitles = Array(5);
C. var bookTitles = new Array(0 to 5);
D. var SIZE = 5;
var bookTitles;
bookTitles = new Array(SIZE-1);

Answer: A

Computer Science & Information Technology

You might also like to view...

Interpret the results of the Scenario Summary and explain how it benefits the owners of Revolution Bikes

What will be an ideal response?

Computer Science & Information Technology

A new class of objects can be created quickly and conveniently by ________—the new class absorbs the characteristics of an existing one, possibly customizing them and adding unique characteristics of its own.

a. customization. b. inheritance. c. copying. d. None of the above.

Computer Science & Information Technology