Definitions
This term describes a repeating action or process in a loop.
What is iteration?
A for loop repeating from 1 to 10 represents this concept.
What is iteration?
A named storage location for data that can change during program execution.
What is a variable?
This term refers to the step-by-step procedure followed to solve a problem.
What is an algorithm?
A decision-making structure that executes one part of the code depending on a condition.
What is selection?
A set of related statements grouped together in code, often using curly braces.
What are blocks?