Contents

Which of the following is required after the closing brace of structure algorithm?
a) period                                                               
b) colon
c) semicolon                                        
d) none of these

c

A structure …….. contain the member of same data type.
a) can                                                    
b) should not
c) cannot                                                              
d) must

a

Before a structure can be used, it must be
a) declared                                          
b) initialized
c) deallocated                                      
d) designed

a

The name of the structure is referred to as
a) parameter                                        
b) datatype
c) argument                                         
d) identity

d

Which of the following can be used to access structure member?
a) structure access operator
b) dot operator
c) both a & b                                       
d) comma

b

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;

d