Bollean logic

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:54 AM on 5/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

What is an AND gate?

Outputs 1 only when both inputs are 1 — if either input is 0 the output is 0

2
New cards

What is an OR gate?

Outputs 1 when at least one input is 1 — only outputs 0 when both inputs are 0

3
New cards

What is a NOT gate?

Inverts the input — if input is 1 output is 0 — if input is 0 output is 1 — also called a NOT gate or inverter

4
New cards

Complete the truth table for AND

A=0 B=0 → 0. A=0 B=1 → 0. A=1 B=0 → 0. A=1 B=1 → 1

5
New cards

Complete the truth table for OR

A=0 B=0 → 0. A=0 B=1 → 1. A=1 B=0 → 1. A=1 B=1 → 1

6
New cards

Complete the truth table for NOT

A=0 → 1. A=1 → 0

7
New cards

What is the output of A AND B when A=1 and B=0?

0 — because both inputs must be 1 for AND to output 1

8
New cards

What is the output of A OR B when A=0 and B=1?

1 — because at least one input is 1

9
New cards

What is the output of NOT A when A=1?

0 — NOT inverts the input

10
New cards

Complete the truth table for A AND (NOT B)

A=0 B=0 → NOT B=1 → 0 AND 1 = 0. A=0 B=1 → NOT B=0 → 0 AND 0 = 0. A=1 B=0 → NOT B=1 → 1 AND 1 = 1. A=1 B=1 → NOT B=0 → 1 AND 0 = 0

11
New cards

Complete the truth table for (A OR B) AND (NOT A)

A=0 B=0 → 0 AND 1 = 0. A=0 B=1 → 1 AND 1 = 1. A=1 B=0 → 1 AND 0 = 0. A=1 B=1 → 1 AND 0 = 0

12
New cards

How do you work out the output of a logic diagram with multiple gates?

Work from left to right — calculate the output of each gate in order — use the outputs of earlier gates as inputs to later gates — build up a truth table column by column