1. What is the output of: print(type("5"))

2. Which symbol is used for comments in Python?

3. What will be the output of: print(2 ** 3 ** 2)

4. What does the len() function return when used on a dictionary?

5. What is the output of this code? a = [1, 2, 3] print(a * 2)

6. Which of the following is used to define an anonymous function?

7. Which of the following is not a valid Python data type?

8. What is the result of this code? x = "abc" print(x[::-1])

9. Which keyword is used to define a function in Python?

10. Which of these can be used to create a set in Python?