Which of the following is NOT a valid access specifier in C++?
What is the purpose of the `std::move` function in C++11?
Which of the following is a correct way to declare a pointer to a function that takes an integer and returns a double?
What is the difference between `struct` and `class` in C++?
Which keyword is used to prevent a derived class from overriding a virtual function?
What is the purpose of the `explicit` keyword in C++?
Which of the following is an example of a lambda expression in C++?
What is the output of the following code snippet? `std::cout << (5 >> 2);`
What does RAII stand for in C++?
Which STL container guarantees that elements are stored in sorted order?