Lesson 13: Logical operators
Sometimes a decision depends on several conditions together. In C# you combine booleans with symbols: && is 'and' (both must be true), || is 'or' (at least one is true), and ! is 'not' (flips true to false). Note: in C# these are symbols — not the words and/or/not.