Circuits, Computer Architecture, And Analog Vs. Digital Systems Flashcards

1
Q

How does addition with logic gates work?

A

Binary addition involves adding two binary numbers digit by digit, considering carry-over bits

Each digit can have two possible values: 0 or 1

The sum of two bits can be 0, 1, or 10 (in the case of a carry)

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

How do you implement binary addition with XOR?

A

XOR (Exclusive OR) gate performs bit-wise addition without considering carry

When XORing two bits, the output is…
- 1 if the inputs are different
- 0 if they are the same

By connecting the bits of the two numbers to XOR gates, we can obtain the sum of corresponding bits

*make truth table to figure this out

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

How do you handle carry with AND?

A

To handle the carry-over bit, we use the AND gate

The AND gate outputs….
- 1 only when both inputs are 1
- otherwise, it outputs 0

By connecting the bits of the two numbers to an AND gate, we can obtain the carry-out bit

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

Half adder truth table with carry-out?
(REFER TO SLIDES FOR TABLE)

A

.

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

How do you cascade adders for multi-bit addition?

A

For multi-bit addition, we can cascade multiple 1-bit adders

The carry-out bit from each stage is connected to the carry-in bit of the next stage

This allows for the addition of numbers with multiple bits

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

What is the Von Neumann computer architecture?

A

Is a fundamental design concept for computers

Named after mathematician and computer scientist John von Neumann

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

What are the 3 key components of Von Neumann computer architecture?

A
  1. Central Processing Unit (CPU):
    - executes instructions and performs calculations
    Contains:
    - a control unit that includes an instruction register and a program counter
    - arithmetic logic unit that performs arithmetic and bitwise operations on integer binary numbers
  2. Memory Unit:
    - stores both data and instructions
  3. Input/Output (I/O) Devices:
    - facilitate communication between the computer and external devices
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the 3 main characteristics of Von Neumann computer architecture?

A
  1. Stored-Program Concept:
    - instructions are stored in memory along with data
    - instructions can be fetched, decoded, and executed sequentially
  2. Sequential Execution:
    - instructions are executed one after another in a specific order
  3. Single Bus (communication pathway) Architecture:
    - data and instructions share a common bus for communication
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How does a computer program run?

What are the 4 steps?

A

Fetch-Decode-Execute Cycle:

  1. Fetch:
    - the CPU retrieves the next instruction from memory
  2. Decode:
    - the CPU interprets the instruction and determines the operation to be performed
  3. Execute:
    - the CPU performs the operation indicated by the instruction
  4. Repeat:
    - the cycle continues until the program execution is complete
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The Von Neumann architecture forms the basis of “_________” computing systems

A

Modern

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

What are 3 modern improvements that were made to the Von Neumann architecture?

A
  1. Parallel Processing:
    - multiple processor cores or execution units work
    simultaneously to execute instructions and perform computations
  2. Caching and Memory Hierarchy:
    - multiple levels of memory with varying
    speeds and capacities
  3. Pipelining:
    - breaks down the execution of instructions into multiple stages, allowing simultaneous processing of different stages simultaneously
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In the world of signals & systems, what are the 2 fundamental types?

A
  1. Digital:
    - computers operate this way
    - use digital signals & can only process discrete values
  2. Analog:
    - real world is inhertently analog
    - physical phenomena represented by continuous signals
    - ex. Sound, temp and light
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do we bridge the gap between analog and digital computers?

A

Digital-to-Analog (D/A) and Analog-to-Digital (A/D) converters are used

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

What are A/D converters?

A

They transform analog signals into digital signals

They sample and measure the continuous analog signal at regular intervals
—>converting it into a discrete digital representation

Are found in* various applications…*
Ex. digital audio recording, temperature sensing, and data acquisition systems

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

What are D/A converters?

A

They transform digital signals into analog signals

They convert binary digital data
—> into continuous voltage levels or current signals

Commonly used in audio devices to convert digital
audio data
into analog signals that can be amplified and played through speakers

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

When digitizing analog signals, what two important concepts come into play?

Why are these important?

A
  1. Quantization
  2. Sampling rate

Understanding these concepts is essential to ensure accurate and realistic representation of analog signals in the digital domain

17
Q

What is quantization?

A

Quantization is the process of converting continuous analog signals into discrete digital values

Involves dividing the range of possible analog signal amplitudes into a finite number of discrete levels

Each level is assigned a digital code or value representing a sample of the original analog signal

18
Q

The “______” of discrete levels used in quantization determines the resolution/precision of the digitized signal

A “______” number of levels (greater resolution) allows for a more “_________” representation of the original analog signal

A

Number

Higher; accurate

19
Q

The resolution is typically expressed in “_____” indicting the number of possible digital values

A

Bits

Ex. 8-bit, 16-bit, or 24-bit etc…

20
Q

What is quantization error?

How does this occur?

A

It is a small error known as quantization error or
quantization noise

This error occurs because the analog signal’s continuous amplitude is approximated by discrete levels during quantization

Ex. Sampling a signal such as sounds at 8-bit resolution will give only 256 discrete levels to encode the full analog range

21
Q

What is the sampling rate?

A

Refers to the number of samples taken per second from an analog signal during digitization

It is the time domain resolution

Determines the frequency at which the analog signal is measured and converted into digital samples

Typically expressed in Hertz (Hz) and is commonly referred to as samples per second or samples/sec

22
Q

What does the Nyquist-Shannon sampling theorem state?

A

To accurately reconstruct an analog signal from its samples, the sampling rate must be at least twice the highest frequency component in the signal

This ensures that no information is lost during the sampling process
= allows for accurate signal reconstruction