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

Crossword: Programming Fundamentals & Constructs

Across

1. operators used in programming to manipulate Boolean values

2. To combine two values, the plus sign (+) is employed.

3. Reverses the logical state of its operand.

4. Only returns True if either operand is True, but not both.

5. A control structure that executes a block of code if a certain condition is true.

6. A variable that can be accessed and modified from any part of a program.

7. A boolean expression that determines the execution path of a program.

8. 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.

9. A control structure that selects one of many code blocks to be executed.

Down

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

11. A named storage location in a computer's memory that can hold a value

12. A loop that repeats a block of code as long as a specified condition is true.

13. 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.

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


🖶

Shortcuts

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