Solved

Which of the Following Declares a Structure Data Type Named

Question 1

Multiple Choice

Which of the following declares a structure data type named Complex, which has two fields named Real and Imaginary, both of which are of type Double?


A) Declare Structure Complex Dim Real As Double
Dim Imaginary As Double
End Declare
B) Structure Complex Dim Real as Double
Dim Imaginary as Double
End Structure
C) Structure As Complex Dim Real As Double
Dim Imaginary As Double
End Structure
D) Dim Structure Complex Dim Real(Double)
Dim Imaginary(Double)
End Structure

Correct Answer:

verifed

Verified

Related Questions