Concatenation
- Joins two strings together.
- Example: "Summer" & "Pudding" → "Summer Pudding"
AND Operator
- Performs logical AND on two Boolean values.
- TRUE = 1, FALSE = 0
- Example: TRUE AND FALSE → 0 (FALSE)
- Rule: Both values must be TRUE for the result to be TRUE.
OR Operator
- Performs logical OR on two Boolean values.
- Example: TRUE OR FALSE → 1 (TRUE)
- Rule: If at least one value is TRUE, the result is TRUE.
No comments:
Post a Comment