1/5
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Conditional Statements
Statements in programming that allow the execution of different code blocks based on specified conditions.
Control Flow
The order in which the code is executed, often altered by conditional statements like if...else and switch.
Variables Declaration
The process of defining and assigning initial values to variables in a program.
Nested if...else Statements
Conditional statements within other conditional statements, allowing for more complex decision-making.
Switch Statement
A control flow statement used to perform different actions based on different conditions.
Ternary Operator
An operator that takes three operands and is used as a shortcut for an if...else statement in assigning values based on a condition.