2.
What is the purpose of the 'else' statement in C++?

3.
What is the correct syntax for the 'switch' statement in C++?

6.
What is the correct syntax for the 'while' loop in C++?

8.
What is the purpose of the 'default' case in a 'switch' statement in C++?

10.
What will be the output of the following code: for (int i = 5; i >= 0; --i) { cout << i << " "; if (i == 3) break; } in C++?