1. How do you declare a variable in Python?
2. What is the output of `print(10 / 3)`?
3. True or False: Python is case-sensitive.
4. What is the correct syntax for a for loop in Python?
5. What does `input()` do?
6. What does `len("hello")` return?
7. How do you write a comment in Python?
8. True or False: Python requires variable type declarations.
9. What is the output of `print(2 * "hi")`?
10. What is the scope of a variable defined in a function?