An array that you can picture as a column of values, and whose elements you can access using a single subscript, is what type of array?

A. two-dimensional
B. jagged
C. rectangular
D. single-dimensional


Answer: D

Computer Science & Information Technology

You might also like to view...

Which of the following program segments is equivalent to the program segment given below?

``` If Pay >= 500 Then Set TaxRate = 0.3 End If If (Pay >= 300) AND (Pay < 500) Then Set TaxRate = 0.2 End If If (Pay >= 100) AND (Pay < 300) Then Set TaxRate = 0.1 End If ``` a. ```If Pay > 100 Then Set TaxRate = 0.1 Else If Pay > 300 Then Set TaxRate = 0.2 Else If Pay > 500 Then Set TaxRate = 0.3 End If End If``` b. ```If Pay >= 500 Then Set TaxRate = 0.3 Else If Pay >= 300 Set TaxRate = 0.2 Else If Pay >= 100 Then Set TaxRate = 0.1 End If End If End If``` c. ```If Pay >= 500 Then Set TaxRate = 0.3 Else Set TaxRate = 0.2 If Pay > 100 Then Set TaxRate = 0.1 End If End If``` d. none of the above are equivalent to the given example

Computer Science & Information Technology

What does a managed switch allow a network administrator to do? (Select all that apply.)

a. Monitor network features. b. Configure network features. c. Manage certain network features. d. All of these answers are correct. e. None of these answers is correct.

Computer Science & Information Technology

The statements int x = 1; int y; y = x++;

a) Assign y the value 2; b) Change the value of x to 2. c) Assign y the value 0; d) Assign y the value 1; e) The ++ is a postfix operator.

Computer Science & Information Technology

Increasing the brightness and decreasing the contrast of an image creates a(n) ________ effect

Fill in the blank(s) with correct word

Computer Science & Information Technology