Solved

An Application Contains the Structure Statement Shown Below:
Structure SalonInfo

Question 48

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:
 haircut 50 haircol or 85 blowdry 35 facial 65\begin{array} { | l | l | } \hline \text { haircut } & 50 \\\hline \text { haircol or } & 85 \\\hline \text { blowdry } & 35 \\\hline \text { facial } & 65 \\\hline\end{array}

Correct Answer:

verifed

Verified

Dim mySalonInfo(3)As SalonInfo
mySalonIn...

View Answer

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

Related Questions