6.4 logic gates

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

1/13

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.

14 Terms

1
New cards

logic gates

devices which apply logical operations to one or more boolean inputs in order to produce a single boolean outpu

2
New cards

NOT

returns 1(True) if the boolean operand is 0(False)

<p>returns 1(True) if the boolean operand is 0(False)</p>
3
New cards

AND

returns 1(True) if both boolean operands are 1(True)

<p>returns 1(True) if both boolean operands are 1(True)</p>
4
New cards

OR

returns 1(True) if at least one boolean operand is 1(True)

<p>returns 1(True) if at least one boolean operand is 1(True)</p>
5
New cards

XOR

returns 1(True) if only one boolean operand is 1(True)

<p>returns 1(True) if only one boolean operand is 1(True)</p>
6
New cards

NAND

returns 1(True) if at least one boolean operand is 0(False)

<p>returns 1(True) if at least one boolean operand is 0(False)</p>
7
New cards

NOR

returns 1(True) if both boolean operands are 0(False)

<p>returns 1(True) if both boolean operands are 0(False)</p>
8
New cards

logic circuits

logic gates which have been combined to perform more complex operations like binary addition

9
New cards

truth tables

tables that show every possible combination of inputs and corresponding outputs for a logic gate or circuit

<p>tables that show every possible combination of inputs and corresponding outputs for a logic gate or circuit</p>
10
New cards

half adder

combination of logic gates that adds two boolean values together

xor gate determines if the sum bit is 1, and gate determines if the carry bit is 1

<p>combination of logic gates that adds two boolean values together</p><p>xor gate determines if the sum bit is 1, and gate determines if the carry bit is 1</p>
11
New cards

half adder truth table

<p></p>
12
New cards

full adder

combination of logic gates that adds two boolean values together, plus a carry bit from a previous, less signifcant operation

comprises of two half adders, one with the two inputs, and one with the sum of the first half-adder and the inputted carry bit. the sum of the second half adder goes to the sum and the carry bit of both half adders go into an OR gate for the second carry bit (only one of the two carry bits can be 1 so this does not cause inaccuracy)

<p>combination of logic gates that adds two boolean values together, plus a carry bit from a previous, less signifcant operation</p><p>comprises of two half adders, one with the two inputs, and one with the sum of the first half-adder and the inputted carry bit. the sum of the second half adder goes to the sum and the carry bit of both half adders go into an OR gate for the second carry bit (only one of the two carry bits can be 1 so this does not cause inaccuracy)</p>
13
New cards

full adder truth table

knowt flashcard image
14
New cards

edge-triggered D-type flip-flop

a logic circuit with two inputs: one for a bit of data and another for a clock signal
stores the value of the data input, its stored value is only updated when the clock signal changes