Solved

An Application Contains the Structure Statement Shown Below

Question 42

Essay

An application contains the Structure statement shown below:
Structure SalonInfo
Public strService As String
Public intRate As integer
End Structure
Write a Dim statement that declares an eight-element one-dimensional array of SalonInfo variables. Name the array mySalonInfo . Write the code to store the following data in the array:
An application contains the Structure statement shown below:  Structure SalonInfo  Public strService As String  Public intRate As integer  End Structure  Write a Dim statement that declares an eight-element one-dimensional array of SalonInfo variables. Name the array mySalonInfo . Write the code to store the following data in the array:

Correct Answer:

verifed

Verified

Dim mySalonInfo(3) As SalonInfo
mySalon...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions