PLSSS HELP!!!! 30 POINTS!!
You are running your program. What happens when your program is compiled?
When your program is compiled, Python converts your program into-----
A. binary only
B. Bytecode only
C. bytecode and then binary

Respuesta :

Answer: The original program file, as well as the preprocessor and the output of the compiler, are all text files. When you try to start a program, the operating system generates a new process (complete resource), load the image executable in memory and then run the process.

Explanation: B

Answer:

B. Bytecode only

Explanation:

Python is an interpreted language, which means the source code of a Python program is converted into bytecode that is then executed by the Python virtual machine.