1 16
12
2
17
3
4
13
5/11
6
7
14
8
9 15
10

Crossword: Programming Fundamentals & Constructs

Across

1. The process of making a decision based on certain conditions.

2. A loop that executes a block of code at least once, and then repeatedly executes it as long as a specified condition evaluates to true.

3. A value that remains unaltered throughout the execution of a program.

4. The sequence of statements executed based on the condition in an if or switch statement.

5. A loop that never terminates and keeps repeating indefinitely.

6. The order of execution of a program's statements and instructions.

7. A statement used to exit a loop prematurely, without executing the remaining code.

8. A statement used to skip the rest of the current iteration in a loop and proceed to the next iteration.

9. A case in a switch statement that is executed when none of the other cases match.

10. Reverses the logical state of its operand.

Down

11. Used to check if two variables refer to the same object in memory.

12. A common construct used for definite iteration in many programming languages is the ability to execute a block of code repeatedly for a specified number of times.

13. Used to check if a value exists in a sequence.

14. The limit of accessibility and visibility of a variable

15. In programming, a control structure enables the recurring execution of a block of code until a specific condition is satisfied.

16. A control flow structure that repeats a block of code indefinitely until a certain condition is met.

17. A variable utilized in definite iteration that keeps record of the number of times a loop has executed.


🖶

Shortcuts

Left: ⇤ Right: ⇥ Up: ↑ Down: ↓