1. How do you declare an integer variable in C++?
2. What is the output of `cout << 10 / 3;`?
3. True or False: C++ is case-sensitive.
4. What is the correct syntax for a for loop in C++?
5. What does `cin >> x;` do?
6. What is used to include the I/O library?
7. How do you write a single-line comment in C++?
8. True or False: Variables must be declared with a type in C++.
9. What is the output of `cout << (5 > 3);`?
10. What is the scope of a variable declared inside a block?