C Plus Plus Miscellaneous - Study Mode
[#221] What is meant by sequence point?
Correct Answer
(A) Represent the point of execution in the program
[#222] Where does the member should be defined if it is used in the program?
Correct Answer
(A) Namespace scope
[#223] What is the use of get() function in tuples?
Correct Answer
(A) To access an element of a tuple
[#224] What is the difference between begin() and rbegin()?
Correct Answer
(B) begin() returns an iterator to the first element and rbegin() returns an iterator to an element kept at the end of the vector
[#225] Subsequent elements are moved in terms of . . . . . . . . when an element in inserted in vector?
Correct Answer
(C) Both assignment operator and copy constructor