Consider the following structure definition. Which Dim statement would correctly declare an array of this structure for elements having subscripts from 0 through 30?
```
Structure carType
Dim yr As Integer
Dim make As String
Dim model As String
End Structure
```
(A) You cannot have an array of structures.
(B) Dim carType(30)
(C) Dim car(30) As carType
(D) Dim carType(30) As car
(C) Dim car(30) As carType
You might also like to view...
Report wizard is a more efficient way to start a report, although ________ offers more control as you create the report
Fill in the blank(s) with correct word
What aspects of Ethernet have remained relatively unchanged over the years, and what aspects have changed?
What will be an ideal response?
The action or actions that occur within a loop are known as a(n) ____.
A. loop body B. action body C. loop internals D. structure body
____ types store various kinds of numbers, and can be used as “building blocks” to build other types.
A. Reference B. Primitive C. Return D. General