Logic Gates & Boolean Algebra (SS1 Level)

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

1/13

flashcard set

Earn XP

Description and Tags

Question-and-answer flashcards covering definitions, Boolean expressions, algebraic rules, truth tables, compound gates, real-world applications, and practice recommendations from the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

What is a logic circuit?

A closed electrical loop that processes binary inputs (0/1) using logic gates to perform a task.

2
New cards

In digital logic, what do the binary values 0 and 1 represent?

0 represents LOW/OFF/False, and 1 represents HIGH/ON/True signals.

3
New cards

When does an AND gate output 1?

Only when all of its inputs are 1.

4
New cards

What is the Boolean expression for an OR gate with inputs A and B?

Y = A + B.

5
New cards

How does a NOT gate affect its input?

It flips the input: 0 becomes 1, and 1 becomes 0.

6
New cards

What information does a truth table provide?

All possible input combinations for a logic circuit and their corresponding outputs.

7
New cards

In the truth table for an AND gate, what is the output when A = 1 and B = 1?

The output Y = 1.

8
New cards

According to Boolean algebra, what is the value of A * 1?

A * 1 = A.

9
New cards

According to Boolean algebra, what is the value of A + 1?

A + 1 = 1.

10
New cards

What is a NAND gate in Boolean terms?

A gate whose output is the NOT of the AND result: Y = (A * B)'.

11
New cards

Under what condition does an XOR gate output 1?

When the two inputs differ (one is 0 and the other is 1).

12
New cards

Provide a real-world application for an AND gate.

Burglar alarms where both sensors must trigger to sound the alarm.

13
New cards

What does the rule A'' = A mean in Boolean algebra?

Applying NOT twice (double NOT) returns the original value.

14
New cards

What is a suggested next step for practicing logic gate design?

Design a circuit such as Y = (A + B) * C or explore half-adders used in computers.