WGU D335 INTRO TO PYTHON EXAM
SCRIPT VERIFIED QUESTIONS WITH
ACCURATE ANSWERS
●● 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()
SCRIPT VERIFIED QUESTIONS WITH
ACCURATE ANSWERS
●● 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()