solutions (Guaranteed Success )
Computer Program - answer Set of instructions executing one at a time.
Input - answer Data that is entered into the computer system via an
input or storage device.
Process - answer A series of actions or steps taken to achieve an end
Output - answer Data that has been processed into a useful format.
Variables - answer A named item in a program, such as x or
num_people, used to hold a value
Interactive Interpreter - answer a program that allows the user to
execute one line of code at a time
Code - answer Common word for the textual representation of a
program
Prompt ('>>>') - answer A signal that the interpreter is ready to accept
code
, Statement - answer A program instruction
Expressions - answer A combination of items, like variables, literals, and
parentheses, that evaluates to a value, like 2*(x=1).
Codes that return a value when evaluated
Assignment - answer Creates a new variable using the '=' symbol
" = " - answer assignment operator (NOT EQUALITY)
= is an assignment of a left-side variable with a right-side value
print() - answer Displays variables or expression values
Always adds a newline character after the output
" # " - answer Comments
Comments - answer Uses "#"
Can be used to explain portions of the code to human readers and will
be ignored by the program
String Literal - answer ('Hello World')