Multiple Choice
Which of the following statements is false?
A) C++14's global rbegin, rend, crbegin and crend functions are for iterating through a built-in array or a container from back to front.
B) Functions rbegin and rend return iterators that can be used to modify data, and rcbegin and rcend return const iterators that cannot be used to modify data.
C) Functions begin and end and their C++14 const and reverse versions may also receive container objects as arguments-each function calls the corresponding member function in its container argument.
D) When iterating using iterators, it's common for the loop-continuation condition to test whether the iterator has reached the end of the built-in array or the container. This technique is used by many Standard Library algorithms.
Correct Answer:

Verified
Correct Answer:
Verified
Q19: Which of the following applications would a
Q20: The expression std::multimap<int, double, std::less<int>>::value_type(15, 2.7):<br>A) Creates
Q21: Which of the following bitset member functions
Q22: Iterators are similar to pointers because of
Q23: A Standard Library algorithm cannot:<br>A) Return an
Q25: Which of the following is not an
Q26: If pairs is a map containing int
Q27: Which of the following is a not
Q28: To pop an element off the top
Q29: The list sequence container does not:<br>A) Efficiently