1. Which of the following is a valid variable name in Python?
2. What is the output of 5 // 2 in Python?
3. What operator is used for exponentiation in Python?
4. What is the result of 10 % 3?
5. What is the output of x = 5; x += 3; print(x)?
6. What type of operator is and in Python?
7. Which comparison operator checks if two values are NOT equal?
8. What is the result of bool("False")?
9. What happens if you assign a new value to an existing variable?
10. What is the output of print(2 * (3 + 5))?
