Python_Basics_Questions
Python_Basics_Questions
### True/False
6. Python supports both interactive mode and script mode for
execution.
Answer: True
14. Boolean data types in Python can have two possible values:
__________ and __________.
Answer: True, False
17. What is the difference between interactive mode and script mode
in Python?
Answer:
- Interactive Mode: Code is executed line by line in the Python
shell.
- Script Mode: Code is saved in a file and executed all at once.