Using Python to Interact with the Operating System
Question: 1
What is the purpose of using a shebang line in a Python file?
a. To tell the operating system where to find programs to execute.
b. To tell the operating system to execute a file in the current directory.
c. To specify beforehand what command to use when running the script.
d. To make the specified file executable by changing permissions.
Question: 2