This lesson shows how Boolean values in Swift work with logical operators. We start by assigning true and false to variables. Then we combine them using AND (&&), OR (||), and NOT (!). Each step evaluates the expression and stores the result. For example, true AND false is false, true OR false is true, and NOT true is false. These results help us make decisions in code. The tables track each variable's value after every step. Common confusions include why AND needs both true, how NOT flips values, and how OR works with one true. The quiz checks understanding by asking about values at specific steps and what changes if inputs change.