Complete the code to show the first step in compiling a program.
source_code = read_file('program.c') compiled_code = [1](source_code)
The first step in compiling a program is to compile the source code into machine code.
Complete the code to show how an interpreter runs a program.
source_code = read_file('script.py') [1](source_code)
An interpreter runs the source code directly without compiling it first.
Fix the error in the code that tries to compile and then run a program.
compiled_code = compile(source_code)
[1](compiled_code)After compiling, the program must be executed to run the machine code.
Fill both blanks to complete the process of compiling and running a program.
source_code = read_file('app.c') [1]_code = [2](source_code) run([1]_code)
The source code is first compiled using the compile function, then the compiled code is run.
Fill all three blanks to create a dictionary showing the steps of interpreting a program.
steps = {
[1]: 'Read source code',
[2]: 'Translate and run line',
[3]: 'Repeat until done'
}The dictionary keys are numbers showing the order of steps: 1, 2, and 3.