On a line chart, the x-axis is also known as the:
A) base axis. B) value axis. C) legend axis. D) category axis.
D
Computer Science & Information Technology
You might also like to view...
The Windows Firewall uses the same settings for all locations
Indicate whether the statement is true or false
Computer Science & Information Technology
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
Computer Science & Information Technology