// Anna, Bob and Carl all voted on a proposal. // There is a boolean variable to represent each person's vote. // The variable has the value true if that person voted yes, // and false if that person voted no. boolean anna = true; boolean bob = false; boolean carl = true; boolean vote = anna || bob || carl;