click below
click below
Normal Size Small Size show me how
CS Unit 7
| Question | Answer |
|---|---|
| Boolean | A data type that has two possible values representing one of two values – either true or false. |
| Comparison Operators | Specific operators used to compare two values, such as greater than (>) or equal to (==). |
| Conditionals | Programming statements that perform actions based on whether a condition is true or false. |
| Elif | A contraction of "else if" in programming, used to check additional conditions if the previous ones are false. |
| Else | A part of a conditional statement that runs if none of the previous conditions are true. |
| Flowchart | A diagram that visually represents a process or algorithm, often used to plan nested if statements. |
| If Statements | A fundamental conditional structure in programming that allows decisions to be made based on whether a condition is true. |
| Logical Operators | Operators used to combine multiple conditions, such as AND, OR, and NOT. |
| Nested If Statements | A programming construct where an if statement is placed inside another, allowing for multiple conditions to be evaluated hierarchically. |
| Operators | Symbols or words used to perform operations such as addition, subtraction, or comparison. |