Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Program Design Problem
Quiz 10: Arrays
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Question 21
True/False
Languages in which arrays are objects, including JavaScript, implement a two-dimensional array as an array of arrays, so separate brackets must be used for the subscripts.
Question 22
True/False
In JavaScript, two-dimensional arrays are implemented by making each array element contain an array object of its own.
Question 23
True/False
A one-dimensional array in JavaScript is an array of arrays.
Question 24
True/False
To assign values to a 2-D array in JavaScript, create a one-dimensional array as usual, and then add a for loop that sets each array element to an array of its own.
Question 25
True/False
If a two-dimensional array is organized in rows and columns, its values can be displayed row by row for easy readability.
Question 26
Multiple Choice
The solution for keeping multiple occurrences of similar variables is a(n) ____.
Question 27
Multiple Choice
An array is a collection of variables called ____, each with the same name and data type.
Question 28
Multiple Choice
A(n) ____ is a nonnegative integer used to identify an element in an array.
Question 29
Multiple Choice
What is the size of the following array? Declare Numeric custNumber[10] //Load custNumber array CustNumber[0] = 10001 CustNumber[1] = 10643 CustNumber[2] = 10922 CustNumber[3] = 11532 CustNumber[4] = 11765
Question 30
Multiple Choice
Based on the information below, what is the value in the fourth position of the array? Declare Numeric custNumber[10] //Load custNumber array CustNumber[0] = 10001 CustNumber[1] = 10643 CustNumber[2] = 10922 CustNumber[3] = 11532 CustNumber[4] = 11765
Question 31
Multiple Choice
Based on the information below, what is the value of the first element? Declare Numeric custNumber[10] //Load custNumber array CustNumber[0] = 10001 CustNumber[1] = 10643 CustNumber[2] = 10922 CustNumber[3] = 11532 CustNumber[4] = 11765