Topic 3.6 Video 2 Practice Questions
Document Details
Uploaded by Deleted User
College Board
Tags
Summary
This document contains practice questions on boolean expressions and truth tables. The questions are related to logic and computer science concepts, suitable for high school students.
Full Transcript
Topic 3.6 Video 2 1. https://apclassroom.collegeboard.org/d/1heqr0rwdo?sui=8,3What are truth tables used for? 2. When is && true? 3. When is \|\| false? 4. Pause the video and complete the truth Table p q p\|\|q&&p (p \|\| q) \|\| p p && (p \|\| q) --- --- ----------- ------...
Topic 3.6 Video 2 1. https://apclassroom.collegeboard.org/d/1heqr0rwdo?sui=8,3What are truth tables used for? 2. When is && true? 3. When is \|\| false? 4. Pause the video and complete the truth Table p q p\|\|q&&p (p \|\| q) \|\| p p && (p \|\| q) --- --- ----------- ------------------- ----------------- 5. Given two boolean variables, x and y, which of the following expression is equivalent to this expression (x && !y)? 1. (!x \|\| y) 1. (!x && y) 1. !(!x \|\| y) 1. !(!x && y) 1. (x \|\| !y)