Solved

Consider the Following Statements: Struct SupplierType
\quad String Name; \quad Int SupplierID;
};
Struct ApplianceType

Question 7

Multiple Choice

Consider the following statements: struct supplierType
{
\quad String name;
\quad Int supplierID;
};
struct applianceType
{
\quad supplierType supplier;
\quad string modelNo;
\quad double cost;
};
applianceType applianceList[25];
Which of the following best describes applianceList?


A) It is a multidimensional array.
B) It is a struct.
C) It is an array of structs.
D) It is a struct of arrays.

Correct Answer:

verifed

Verified

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

Related Questions