Answers 100% Pass
Indentation is not semantically meaningful in Python - ✔✔False
In the program development cycle, the first step in writing instructions to carry
out a task is to determine how to process the input to obtain the desired output
- ✔✔False
In a hierarchy chart, details on how modules work should be included. -
✔✔False
Which programming tool uses English-like phrases with some Python terms to
outline the task?
Pseudocode
Algorithm
Hierarchy Chart
Flowchart - ✔✔Pseudocode
1|Page
©PROFFKERRYMARTIN 2025/2026. YEAR PUBLISHED 2025.
,The mechanical and electrical devices of a computer are referred to
as_______________.
hardware
software
peripherals
programs - ✔✔Hardware
A ________________ is any person who runs a program
user
programmer
coder
computer - ✔✔User
2|Page
©PROFFKERRYMARTIN 2025/2026. YEAR PUBLISHED 2025.
,Pseudocode is typically more compact than a flowchart - ✔✔True
Using different inputs and outputs on a flowchart to test an algorithm is called
_______________.
desk checking
interpreting
flow charting
debugging - ✔✔Desk Checking
Flowcharts are time-consuming to write and difficult to update - ✔✔True
Instructions in a Python program are called _____________.
Source Code
editor code
debugging code
3|Page
©PROFFKERRYMARTIN 2025/2026. YEAR PUBLISHED 2025.
, files - ✔✔Source Code
Determine the result:
q=1
while q>0:
q=3*q-1
print(q)
Infinite loop
2
0
2
5 - ✔✔Infinite loop
Determine the output:
4|Page
©PROFFKERRYMARTIN 2025/2026. YEAR PUBLISHED 2025.