Quiz Complete! 🎉
Your Score: 7 / 10
Review Your Answers:
1. What is the primary characteristic of an immutable object in Python?
Your Answer: The object's value cannot be changed after creation.
2. Which of the following is NOT a fundamental Python data structure?
Your Answer: Binary Tree
Correct Answer: Dictionary
Explanation: While a Binary Tree can be implemented in Python, it is a custom data structure, not one of the built-in, fundamental types like List, Tuple, or Dictionary.
3. Write a Python one-liner to calculate the factorial of 5 using recursion.
Your Answer: Skipped