Topic 10 - boolean logic Flashcards

ka - term3 2025

1
Q

Why are logic gates needed

A

Data in computer is stored in the form of BINARY
Computer process/run/stores in the form of electrical impulses or charges that are either absent or present
In order to process these binary bits, a system is needed - LOGIC GATES

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Logic gate

A

an electronic circuit that relies on ‘on/off’ logic; the most common gates are
NOT, AND, OR, NAND, NOR and XOR (binary input/output)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Logic circuit

A

these are formed from a combination of logic gates and designed to carry out
a particular function; the output from a logic circuit will be 0 or 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Truth table

A

method of checking the output from a logic circuit
lists every binary output for every possible combination of binary inputs.

Starting from the right side with one 1’s and one 0’s then double each time they move to the left. (2nd one = two 1’s, 2 0’s)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Number of outputs in a truth table

A

number of outputs depends on the number of inputs (2^x)
Ex) 2 input = 2^2(4) outputs, 3 input = 2^3 (8) outputs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Boolean algebra

A

a form of algebra linked to logic circuits and based on TRUE or FALSE
(represents logic gates)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Some basic Boolean algebras

A

A.B = A AND B
A+B = A OR B
NOT A = Ā
A XOR B = A ⊕ B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

NOT

A

One with singular input
Gives the opposite value
X= 1 if A=0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

AND

A

When both inputs are on/1 it turns on/1
X= 1 if both A & B = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

NAND

A

Opposite of AND - when both inputs are on/1 it turns off/0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

OR

A

If either gates are on/1 it turns on/1
X = 1 if either A/B =1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

XOR

A

OR gate but turns off/0 when they are both on/1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

NOR

A

Opposite of OR - If either gates are on/1 it turns off/0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

XNOR

A

NOR gate but turns on/1 if both A & B are turned on/1 OR both A & B is turned off/0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly