VERIFIED CORRECT ANSWERS
PASSED 100%
A program consists of? - Correct Answer ✔✔ input, process, output
A named item used to hold a value? - Correct Answer ✔✔ variable
Sequence of instructions that solves a problem. - Correct Answer ✔✔ Algorithm
program that executes python programming. - Correct Answer ✔✔ python interpreter or
IDE
textual representation of a program - Correct Answer ✔✔ code
row of text - Correct Answer ✔✔ line
indicates the interpreter is ready to accept user input - Correct Answer ✔✔ prompt
line of executable code - Correct Answer ✔✔ statement
returns a value when evaluated - Correct Answer ✔✔ expression
displays output to the screen and starts a new line - Correct Answer ✔✔ print( )
denotes a comment - Correct Answer ✔✔ # or """
text enclosed in quotes - Correct Answer ✔✔ string literal
keep multiple print statements on one line - Correct Answer ✔✔ end=' '
used to get text from user - Correct Answer ✔✔ input ( )
determines how a value can behave - Correct Answer ✔✔ type( )
convert string to an integer - Correct Answer ✔✔ int( )
syntaxes error - Correct Answer ✔✔ a violation of the program language rules on how
symbols can be defined
runtime error - Correct Answer ✔✔ the program attempts an impossible operation