Answer the following statements true (T) or false (F)
1. The splice() method is used to divide one long array into two smaller ones.
2. A two-dimensional array in JavaScript is actually an array of arrays.
3. Given a two-dimensional array named exams[][] that holds the values of three exam scores for each of twenty students, exams[][] contains sixty elements.
4. Parallel arrays use index values to identify related elements.
5. Each element of an array can be used in a program as if it were a variable.
1. False
2. True
3. True
4. True
5. True
You might also like to view...
A(n) ________ is an object in which you can type information anywhere on a slide
Fill in the blank(s) with correct word
Which statement about the #include directive is false?
a) The difference between the various forms of the #include directive is the location the preprocessor searches for the file to be included. b) If the file name is enclosed in quotes, the preprocessor searches in the same directory as the file being compiled for the file to be included. c) If the file name is enclosed in angle brackets, the preprocessor searches in the same directory as the file being compiled for the file to be included. d) The preprocessor searches for standard library header files in an implementation-dependent manner.