is placed in the Click event procedure for one of the program’s buttons. What output will be displayed in the message box when the button is clicked on?

Suppose a structure is created with the code
```
Structure stateUSA
Dim capCity As String
Dim stateNum As Integer
End Structure
```
in the Declarations section of the Code window. The code
```
Dim stateWA As stateUSA
Dim message As String
stateWA.stateNum = 42
stateWA.capCity = "Olympia"
message = stateWA.capCity & " " & stateWA.stateNum
MessageBox.Show(message)
```
(A) 42 Olympia
(B) Olympia42
(C) 42Olympia
(D) Olympia 42

(D) Olympia 42

Computer Science & Information Technology

You might also like to view...

The Columns option on the ________ tab enables you to format a document in columns

A) HOME B) INSERT C) REVIEW D) PAGE LAYOUT

Computer Science & Information Technology

Assuming a is a bool with a value of false, which of the following evaluates to true?

a) !(!a) b) a c) !a d) None of the above.

Computer Science & Information Technology