Unit 2 Computer Systems - Computer Structure Flashcards

1
Q

Front

A

Back

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

What is a computer in its simplest form?

A

A digital machine that takes input, processes it, and outputs the results.

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

What is the role of an input device?

A

Converts real-world information into binary data.

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

What is the role of an output device?

A

Converts binary data into real-world information.

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

What is the ‘stored program concept’?

A

The computer’s memory holds a program (algorithm) that the processor follows, allowing the computer to perform different tasks by changing the program.

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

What is the processor’s primary function?

A

To manipulate binary data.

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

What is a transistor?

A

The smallest form of switching binary circuit.

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

What is clock speed, and what unit is used to measure it?

A

The speed at which a processor performs operations. Measured in Hertz (Hz) or Gigahertz (GHz).

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

What are the three main areas of a processor?

A

Arithmetic and Logic Unit (ALU), Control Unit, Registers

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

What is the function of the ALU?

A

Performs mathematical and logical operations (comparisons, arithmetic, logical operators).

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

What is the function of the Control Unit?

A

Coordinates all activities within the computer that require the processor’s time (fetching instructions/data, decoding instructions, executing instructions, managing clock signal, responding to peripherals).

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

What are registers used for?

A

Temporary storage locations within the processor for data needed for immediate operations (results of calculations, data, addresses).

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

What are the two main types of computer memory?

A

Read Only Memory (ROM) and Random Access Memory (RAM).

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

What is the key difference between RAM and ROM?

A

ROM can only be read; RAM can be read from and written to. RAM requires power to retain its data.

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

How is memory organized?

A

Into individual locations, each with a unique binary address.

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

What are buses used for in a computer system?

A

Electrical pathways that connect the processor and memory.

17
Q

What are the two main types of buses?

A

Address bus and data bus.

18
Q

What is the function of the address bus?

A

Transfers the memory address being accessed from the processor to the memory.

19
Q

What is the function of the data bus?

A

Transfers data between the processor and memory (reading or writing).

20
Q

What is the third bus called and what does it do?

A

The control bus, used by the Control Unit to send signals to/from other parts of the computer.

21
Q

What are high-level languages translated into before a processor can run them?

A

Machine code (binary instructions).

22
Q

What are the two main types of translators for programming languages?

A

Interpreter and compiler.

23
Q

How does an interpreter work?

A

Translates and executes high-level code one line at a time.

24
Q

How does a compiler work?

A

Translates the entire high-level code (source code) into machine code all at once.