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

1. Arrays that are capable of holding the contents of a table with several rows and columns, are
known as two-dimensional arrays or double subscripted variables.
2. The statement
Dim nextVar(3, 5) As Double
declares a two-dimensional array that can store a table containing 4 columns and 6 rows of
numeric data.
3. The statement
Dim nextVar(7, 8) As Double
declares a two-dimensional array that can store a table containing 7 rows and 8 columns of
numeric data.
4. A two-dimensional array can be declared and initialized at the same time.
5. If the two-dimensional array nums has three rows and six columns, then the value of
nums.GetUpperBound(0) is 3 and the value of nums.GetUpperBound(1) is 6.


1. T
2. F
3. F
4. T
5. F

Computer Science & Information Technology

You might also like to view...

The value of the expression 20.0 * (9/5) + 32.0 is

a. 68.0 b. 52.0 c. incorrect expression so there is no value d. 32.0 e. incorrect expression , the / should be %

Computer Science & Information Technology

What type of attack does a remote-access Trojan attempt to perpetrate?

A. worm B. back door C. remote denial of service D. composite attack

Computer Science & Information Technology

Which of the following is NOT a PowerPoint technique for providing maximum impact for your pictures?

A) Grouping B) Filtering C) Rotating D) Recoloring

Computer Science & Information Technology

A(n) ________ can be used in or returned by a function to indicate the position of a value in a series

A) parameter B) serial number C) auto number D) index

Computer Science & Information Technology