PROGRAMMING IN PYTHON | 100%
CORRECTLY ANSWERED AND RATED
A+ | LATEST 2025/2026 GUIDE
A _____ _____ consists of instructions executing one at a time.
- Correct Answer - computer program
Basic instruction types are:
- Correct Answer - Input: A program gets data, perhaps from a file,
keyboard, touchscreen, network, etc.
Process: A program performs computations on that data, such as adding
two values like x + y.
Output: A program puts that data somewhere, such as to a file, screen,
or network.
Programs use ____ to refer to data, like x, y, and are named references
to values stored by the interpreter.
Correct Answer - variables, due to a variable's value "varying" as a
program assigns a variable like x with new values.
creating a sequence of instructions to solve a problem is referred as
what kind of thinking?
, - Correct Answer - computational thinking
A sequence of instructions that solves a problem is called an ______
- Correct Answer - algorithm
is a computer program that executes code written in the Python
programming language.
- Correct Answer - Python Interpreter
is a program that allows the user to execute one line of code at a time.
- Correct Answer - interactive interpreter
is a common word for the textual representation of a program
- Correct Answer - code
is a row of text. - Correct Answer - line
The interactive interpreter displays a ______ that indicates the
interpreter is ready to accept code.
- Correct Answer - prompt (">>>")
is a program instruction. - Correct Answer - statement
,are code that return a value when evaluated ex wage * hours * weeks
- Correct Answer - expressions
A new variable is created by performing an _______ using the ____
symbol - Correct Answer - assignment, = EX salary = wage * hours *
weeks
The ______ function displays variables or expression values.
- Correct Answer - print() EX print('Salary is:', salary)
_____ characters denote _______, which are optional but can be used
to explain portions of code to a human reader.
- Correct Answer - # comments
Text enclosed in single or double quotes is known as a _________. Text
in _______ may have letters, numbers, spaces, or symbols like @ or #.
- Correct Answer - string literal
Each use of print() starts on a ______.
Correct Answer - new line -print()
, A programmer can add ______ inside of print() to keep the output of a
subsequent print statement on the same line separated by a single
space. - Correct Answer - end=' '
The value of a variable can be printed out via: ______
- Correct Answer - print(variable_name), without quotes around
variable_name
Output can be moved to the next line by printing _____ known as a
______. - Correct Answer - \n newline character Ex: print('1\n2\n3')
Any space, tab, or newline is called - Correct Answer - whitespace
function is used to read input from a user. causes the program to wait
until the user has entered text and pushed the return key. also receives
data as a string type, even numbers - Correct Answer - input()
is a sequence of characters, like the text "MARY", that can be stored in a
variable. can be any text - Correct Answer - string
determines how a value can behave - Correct Answer - type
function can be used to convert that string to the integer 123.