Which of the following is required after the closing brace of
structure algorithm?
a) period
b) colon
c) semicolon
d) none of these
A structure …….. contain the member of same data type.
a) can
b) should not
c) cannot
d) must
Before a structure can be used, it must be
a) declared
b) initialized
c) deallocated
d) designed
The name of the structure is referred to as
a) parameter
b) datatype
c) argument
d) identity
Which of the following can be used to access structure member?
a) structure access operator
b) dot operator
c) both a & b
d) comma
Which of the following assigns a value to the hrs? Wage member of emp[2]?
a) emp [2]->hourly Wage=100.00;
b) emp2.hrsWage=3.0;
c) hrsWage[2].emp=71.50;
d) emp[2].hrsWage=400.00;