2.4 boolean logic

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

1/12

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.

13 Terms

1
New cards

what are the three basic boolean operators?

AND, OR, NOT

2
New cards

what is the output of the AND gate when both inputs are 1?

the output is 1 (true)

3
New cards

what is the output of the OR gate when both inputs are 0?

the output is 0 (false)

4
New cards

how does a NOT gate work?

it inverts the input: if the input is 1, the output is 0, and vice versa

5
New cards

create a truth table for the AND gate

A, B, A AND B

0, 0, 0

0, 1, 0

1, 0, 0

1, 1, 1

6
New cards

create a truth table for the OR gate

A, B, A OR B

0, 0, 0

0, 1, 1

1, 0, 1

1, 1, 1

7
New cards

create a truth table for the NOT gate

A, NOT A

0, 1

1, 0

8
New cards

what is a truth table?

it shows all possible input combinations and their corresponding outputs for a boolean operation

9
New cards

what is the output of an AND gate if one input is 0 and the other is 1?

the output is 0

10
New cards

what is the output of an OR gate if one input is 1 and the other is 0?

the output is 1

11
New cards

what is the output of an AND gate when both inputs are 0?

the output is 0

12
New cards

what is the output of a NOT gate when the input is 1?

the output is 0

13
New cards

what is the output of an OR gate when both inputs are 1?

the output is 1