Written by the Fiveable Content Team โข Last updated September 2025
Verified for the 2026 exam
Verified for the 2026 examโขWritten by the Fiveable Content Team โข Last updated September 2025
Definition
Boolean values are data types that can only have two possible values - true or false. They are often used in programming to make decisions based on certain conditions.
Programming statements that execute different actions based on whether a condition evaluates to true or false.
Logical Operators: Symbols used in programming to combine boolean expressions, such as AND, OR, and NOT.
Comparison Operators: Symbols used in programming to compare two values and return a boolean result, such as equal to (=), not equal to (!=), greater than (>), etc.