Digital Logic: Binary Logic, Truth Tables, and Logic Gates

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/14

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers the fundamental concepts of binary logic, electronic signal representation, basic logic operations (AND, OR, NOT), and the various digital logic gates including NAND, NOR, XOR, and XNOR.

Last updated 10:33 PM on 5/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

Binary Logic Variables

Variables that can only have a value of 0 or 1, representing states such as (yes, no), (true, false), or (on, off).

2
New cards

Electronic Logic 1

A high voltage level used to represent a logical 1; in the provided example, this range is 3V3V to 4V4V.

3
New cards

Electronic Logic 0

A low voltage level used to represent a logical 0; in the provided example, this range is 0V0V to 1V1V.

4
New cards

AND Operation

A logical operation where the output z=1z=1 if and only if all inputs are 1; otherwise, z=0z=0. Represented as xy=zx \cdot y = z or xy=zxy = z.

5
New cards

OR Operation

A logical operation where the output z=1z=1 if at least one input is 1; if all inputs are 0, then z=0z=0. Represented as x+y=zx + y = z.

6
New cards

NOT Operation

Also known as the complement; it changes a 1 to a 0 and a 0 to a 1. Represented as xx' or x\overline{x}.

7
New cards

Truth Table

A table that shows all possible combinations of the inputs and gives the corresponding outputs.

8
New cards

Logic Gate

An electronic circuit that operates on one or more input signals to produce an output signal.

9
New cards

Inverter

Another name for a NOT gate, which produces the complement of its input signal.

10
New cards

Buffer

A logic gate that produces an output signal equal to its input signal (F=xF = x).

11
New cards

NAND Gate

A logic gate that performs the complement of the AND operation, defined by the expression F=(xy)F = (xy)'.

12
New cards

NOR Gate

A logic gate that performs the complement of the OR operation, defined by the expression F=(x+y)F = (x + y)'.

13
New cards

Exclusive-OR (XOR)

A logic gate where the output is 1 if the inputs are different and 0 if the inputs are the same.

14
New cards

Exclusive-NOR (XNOR)

Also known as equivalence, this gate produces a 1 if the inputs are the same and a 0 if they are different.

15
New cards

Logic vs. Arithmetic (OR)

While arithmetic states 1+1=21 + 1 = 2, binary logic states 1+1=11 + 1 = 1 (one OR one is equal to one).