Computer Systems (Computer Structure) Flashcards

1
Q

What does CPU stand for?

A

Central Processing Unit

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

What does a CPU do?

A

Fetch, Decode and Execute Information from the RAM
Perform Arithmetic Calculation
Perform Logical Operations
Control Read, Write, Clock, Interrupt and Reset Lines

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

What are the three components of a CPU?

A

ALU
Registers
Control Unit

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

What does ALU stand for?

A

Arithmetic Logic Unit

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

What does the ALU do in the CPU?

A

Performs all Calculations
Performs Comparisons on Numeric Values
Makes Decisions Based on Logic (AND, OR, NOT)

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

What do the Registers do in the CPU?

A

Temporary Storage Locations within the Processor

Stores Addresses, Data or Instructions

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

What does the Control Unit do in the CPU?

A

Control Read, Write, Clock, Interrupt and Reset Lines

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

What does the Clock Speed tell us about the CPU?

A

The Clock Speed is a measure of how quickly a CPU can handle and complete tasks. It is measured in Hertz (Hz)

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

What does RAM stand for?

A

Random Access Memory

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

What is the RAM?

A

The RAM is a temporary storage location for data until it is needed by the CPU

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

What happens to RAM when a program is closed?

A

Data held in RAM is deleted

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

What are the names of the two buses?

A

Data Bus

Address Bus

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

What does the Address Bus do?

A

The Address Bus holds the address in RAM that the processor is accessing. It only goes from the CPU to the RAM

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

What does the Data Bus do?

A

The data bus carries data between the processor and the memory. It goes in both directions, to the CPU and from the CPU

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

What are the two types of translator?

A

Compiler

Interpreter

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

What are two advantages of using an Interpreter?

A

You can run your can without it being finished

Easy to find errors because Interpreters stop at the line with an error

17
Q

What are two disadvantages of using an Interpreter?

A

Code has to be translated each time it is run

Users need to have the translator program running

18
Q

What are two advantages of using a Compiler?

A

Code only has to be translated once

Users don’t need to have the translator program running

19
Q

What are two disadvantages of using a Compiler?

A

Users have to wait until the whole program is perfect before they can run it
Users have to re-translate the whole program if they want to make a change