Solved

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

Question 11

Multiple Choice

Consider the following statements: struct supplierType
{
\quad string name;
\quad int supplierID;
};
struct paintType
{
\quad supplierType supplier;
\quad string color;
\quad string paintID;
};
paintType paint;
What is the data type of paint.supplier?


A) string
B) paintType
C) supplierType
D) struct

Correct Answer:

verifed

Verified

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

Related Questions