| 1 | 14 | ||||||||||||||||||||||||
| 13 | 16 | ||||||||||||||||||||||||
| 2 | |||||||||||||||||||||||||
| 3 | 15 | ||||||||||||||||||||||||
| 4 | |||||||||||||||||||||||||
| 12 | |||||||||||||||||||||||||
| 5 | |||||||||||||||||||||||||
| 6 | |||||||||||||||||||||||||
| 7 | |||||||||||||||||||||||||
| 8 | |||||||||||||||||||||||||
| 9 | |||||||||||||||||||||||||
| 10 | |||||||||||||||||||||||||
| 11 | |||||||||||||||||||||||||
Crossword: Programming Fundamentals & Constructs
Across
1. A command that immediately terminates loop execution, skipping any remaining code inside the loop body.
2. An operator used to compare two values and determine the relation between them, such as ==, !=, >, <, >=, and <= in Python.
3. The order in which program instructions run during execution, determined by control flow statements and conditions.
4. A conditional statement placed inside another conditional statement to create multiple decision paths.
5. A control structure where one loop runs inside another, enabling repeated execution of nested operations.
6. A control structure that executes one code block from multiple options based on a variable's value.
7. A control structure that executes a block of code if a certain condition is true.
8. The process of reducing the value of a variable by a fixed amount.
9. A variable that can only be accessed within a specific function.
10. A statement used to skip the rest of the current iteration in a loop and proceed to the next iteration.
11. A control structure that repeats code until a specified condition becomes true.
Down
12. Operator which only returns True if both operands are True.
13. Only returns True if either operand is True, but not both.
14. The symbol (-) performs subtraction by removing one number's value from another.
15. Symbols that perform basic mathematical calculations like addition, subtraction, multiplication, and division in programming.
16. Classification that specifies which type of value a variable can hold in a programming language.