1 | 13 | ||||||||||||||||||||||||
2 | 16 | ||||||||||||||||||||||||
15 | |||||||||||||||||||||||||
3 | |||||||||||||||||||||||||
5 | 4 | ||||||||||||||||||||||||
6 | |||||||||||||||||||||||||
17 | |||||||||||||||||||||||||
7 | |||||||||||||||||||||||||
8 | |||||||||||||||||||||||||
18 | |||||||||||||||||||||||||
14 | |||||||||||||||||||||||||
9 | |||||||||||||||||||||||||
10 | |||||||||||||||||||||||||
11 | |||||||||||||||||||||||||
12 | |||||||||||||||||||||||||
1. A loop that repeats a block of code as long as a specified condition is true.
2. 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.
3. A statement used to skip the rest of the current iteration in a loop and proceed to the next iteration.
4. operators used in programming to manipulate Boolean values
5. The process of making a decision based on certain conditions.
6. An if statement that is inside another if statement.
7. A case in a switch statement that is executed when none of the other cases match.
8. A variable that can be accessed and modified from any part of a program.
9. 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.
10. A variable that can only be accessed within a specific function.
11. A control structure that executes a block of code if a certain condition is true.
12. The order of execution of a program's statements and instructions.
13. In computer programming, a programming construct is utilized to repetitively execute a block of code for a predetermined number of times.
14. A boolean expression that determines the execution path of a program.
15. A data type that can have two possible values: true or false.
16. The symbol (*) is employed to perform the operation of multiplying two values.
17. A control structure that selects one of many code blocks to be executed.
18. Defining a variables name and type.