Consider the following Structure definition and declaration. Which assignment statement would correctly record that player number 13 had three home runs so far this season?

```
Structure playerType
Dim fullname As String
Dim team As String
Dim position As String
Dim homerun As Double
Dim average As Double
Dim rbi As Double
End Structure
Dim player(45) As playerType
```
(A) ``` player(13) = 3
```
(B) ``` player(13).homerun(3)
```
(C) ``` playerType(13).homerun = 3
```
(D) ``` player(13).homerun = 3
```
(E) None of the above


(D) ``` player(13).homerun = 3
```

Computer Science & Information Technology

You might also like to view...

C++ is a:

a. Typeless language. b. Hybrid object-oriented language. c. Subset of the C Language. d. Pure object-oriented language.

Computer Science & Information Technology

S/MIME cryptographic algorithms use __________ to specify requirement level.

A. CAN and MUST B. SHOULD and CAN C. SHOULD and MIGHT D. SHOULD and MUST

Computer Science & Information Technology

The null value is a data type as well as a value that can be assigned to a variable.

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

Computer Science & Information Technology

If you wanted every cell that has a value over $1,251 to have a purple fill, you would use what feature in Excel?

A. Conditional formatting B. AutoFill formatting C. AutoComplete formatting D. Aggregate Cell formatting

Computer Science & Information Technology