Initializer lists are used in
a. assignment operators
b. all member functions
c. constructors
d. destructors
e. friend functions
C
You might also like to view...
Which of the following is the speed limitation for CAT3 wiring?
A. 1 Mbps B. 10 Mbps C. 100 Mbps D. 1000 Mbps
which of the following statements is a true statement, assuming there is at least one input record?
Given the following pseudocode: ``` FINAL-ACCUM = 0 NAME-ACCUM = 0 Read NAME, AMT SAVE-NAME = NAME DOWHILE not EOF IF NAME ? SAVE-NAME THEN Write NAME-ACCUM FINAL-ACCUM = FINAL-ACCUM + NAME-ACCUM NAME-ACCUM = 0 SAVE-NAME = NAME ELSE Write NAME, AMT NAME-ACCUM = NAME-ACCUM + AMT ENDIF Read NAME, AMT ENDDO ``` a) All the detail records will be processed successfully. b) Some of the detail records will be processed successfully. c) None of the detail records will be processed successfully. d) Only the first detail record will be processed successfully.