CPU Flashcards

1
Q

What is clock speed?

A

The amount of calculations a computer can do per second, measured in Hz.

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

What is the cycle that the CPU uses to run?

A

The Fetch->Decode->Execute Cycle

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

What are the 3 main parts of a CPU?

A
  • The control unit
  • The Immediate Access Store (IAS)
  • The Arithmetic and Logic Unit (ALU)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are “cores”?

A

Cores are, in a sense, “CPUs”, with a n-core processor theoretically having n separate CPUs

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

What benefit would using a multi-cored processor give you?

A

An extra core means that you can process more than 1 calculation at once, so theoretically (if programs were written for multiple cores) if you had a n-core computer it would run n x faster

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

What are the 3 main jobs of the Control Unit?

A
  1. It controls and monitors the hardware attached to the system - to make sure that the commands given to it by the application software are used. (For example, if you send something to print, the control unit will keep a check that the instructions are sent to the printer correctly).
  2. It controls input and output data, to guarantee that data goes to the right devices at the right time.
  3. It controls the flow of data in a CPU.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does the IAS do?

A

The Immediate Access Store holds the data needed instantly by the CPU, as the ‘Backing store’ (basically the hard drive or SSD) is too slow.

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

What does the Arithmetic and Logic Unit (ALU) do?

A

Unsurprisingly, this consists of 2 parts:

  1. The Arithmetic Part
    - This performs calculations on the data (e.g. 400/10 = 40)
  2. The Logic Part
    - This works with comparisons and logic (E.g. Whether a value is equal, less than or greater than another)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the cache and what is stored on it?

A

High speed static RAM (SRAM) which is faster than DRAM. Instructionst that are used my programs over and over are stored here so the computer can avoid accessing the slower DRAM.

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