Font size
WorksheetsBasic Programming Concepts
Total questions: 15
Worksheet time: 8mins
What is an iterative programming structure?
loop
if/else
algorithm
flowchart
Each time through a loop is called a(n)...
step
iteration
condition
variable
What is a list of steps to finish a task?
algorithm
command
property
condition
What is part of a program that does not work correctly?
bug
sequence
command
algorithm
A statement that a program checks to see if it is true or false. If true, an action is taken. Otherwise, the action is ignored.
condition
program
command
flowchart
Statements that only run under certain conditions.
conditional
iteration
algorithm
bug
A loop that continues to repeat while a condition is true
repeat
loop
condition
while loop
What is a diagram that represents an algorithm?
flowchart
pseudocode
conditional execution
iterative programming structure
Simplified notation that resembles a formal programming language
pseudocode
condition
flowchart
algorithm
Programming a loop inside another loop is called...
nested loops
harnessed loops
coupled loops
repeating loops
How can a programmer make a sequence of code more efficient?
use a loop
write it in pseudocode
put it in a flowchart
only use simple commands
To run a program that will make decisions, a programmer should use
conditional statements
pseudocode
complex tasks
iterations
How many times does the loop need to repeat?
2
3
4
5
Select all the terms that relate to iterative programming structures.
loop
repeat
if/then
iteration
true/false
Select all the terms that relate to conditional execution
loop
repeat
if/else
iteration
true/false
