Logic Gates

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/16

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

Binary Logic/Boolean Logic (definition)

The process of reducing values to either True or False, in order to perform calculations.

2
New cards

Logic Gate (definition)

A building block of the digital circuitry found in a CPU. It performs a logical operation on the inputs it receives.

3
New cards

What is a logic circuit?

A combination of logic gates which are used to process data.

4
New cards

AND gate

Both A and B need to be True, otherwise its false

5
New cards

AND gate notation

A ^ B /A.B/ AB/A AND B

6
New cards

Draw an AND gate in Sketchbook

<p>…</p>
7
New cards

OR gate

True if A or B or both is True, otherwise its False

8
New cards

OR gate notation

A V B / A+B /A OR B

9
New cards

Draw an OR gate

<p>…</p>
10
New cards

NOT Gate

True when A is False. Opposite day

11
New cards

NOT Gate notation

¬A/~A/Ā/!A

12
New cards

Draw a NOT Gate

<p>…</p>
13
New cards

NAND Gate

True if only A and B are false, otherwise it’s False

14
New cards

NAND Notation

¬(A^B)/A | B/A ↑ B/A NAND B

15
New cards

Draw a NAND Gate

<p>…</p>
16
New cards

NOR Gate

True if A or B or both are False, otherwise it’s False

17
New cards

Draw a NOR Gate

<p>…</p>