Answers (100% Correct)
Python interpreter - ANSWER - a computer program that executes code written in the Python programming language
interactive interpreter - ANSWER - a program that allows the user to execute one line of
code at a time.
Interpreter - ANSWER - A program that executes computer code.
Code - ANSWER - The text that represents a computer program.
Prompt - ANSWER - Informs the programmer that the interpreter is ready to accept commands.
Line - ANSWER - A row of text.
statement - ANSWER - is a program instruction.
Expressions - ANSWER - code that return a value when evaluated
variables - ANSWER - named references to values stored by the interpreter.
syntax error - ANSWER - is to violate a programming language's rules on how symbols can be combined to create a program.
program, application, or just app - ANSWER - The programmer-created sequence of instructions
Compiler - ANSWER - Translates a high-level language program into low-level machine
instructions.
Application - ANSWER - Another word for program.
The programmer-created sequence of instructions is called a program, application, or just app.
machine instruction - ANSWER - 0s and 1s are hard to comprehend. Most programmers specify the program's functionality in a high-level language, which is then automatically translated to low-level machine instructions.
assembly language - ANSWER - Human-readable processor instructions
An assembler is a program that translates assembly language instructions into machine instructions.