Systems Architecture [1.7] Flashcards

1
Q

What is a General Purpose Computer?

A

A Computer designed to be able to carry out a wide range of instructions.

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

What is an application?

A

A software program that allows a user to perform a specific task.

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

What is hardware?

A

The physical parts of a computer system, eg a graphics card, hard disk drive or CD drive.

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

What is software?

A

The programs (series of instructions) that run on a computer.

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

What is Secondary Storage?

A

Non-volatile memory external to the computer and used for long term storage of programs and data.

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

What is secondary storage held in while being processed?

A

Primary Memory.

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

What is an input device?

A

A device used to input data or information into a computer, e.g a keyboard, mouse, scanner or microphone.

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

What does the CPU do with instructions?

A

Sends it to an output or transfers it to secondary storage.

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

What is the purpose of the CPU?

A

The CPU is the most important hardware component in a computer. It has two main functions:

Process data and instructions

Control rest of computer system

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

What is the frequency of the clock pulses known as?

A

Clock Speed - Measured in hertz

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

What is a bus?

A

High speed internal connection.

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

What are buses used for?

A

Used to send control signals and data between processor and other components.

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

What are the 3 types of buses called?

A

Address Bus - Carries memory addresses from the processor to other components such as primary memory and input/output devices

Data Bus - Carries actual data between processor and other components

Control Bus - Carries control signals from the processor to the other components. The control bus also carries the clock’s pulses.

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

What is Von Neumann architecture?

A

A description of the processing architecture that all CPU’s use.

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

What are the key elements of Von Neumann architecture?

A

Data and Instructions are both stored as binary digits.

Data and instructions are both sotred in primary memory.

Instructions are fetched from memory one at a time and in order.

Processor decodes and executes on instruction before cycling around to fetch the next instruction.

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

What are the steps of the fetch, decode, execute cycle?

A

The memory address held in the program counter is copied into the MAR.
The address in the program counter is then incremented (increased) by one. The program counter now holds the address of the next instruction to be fetched.
The processor sends a signal along the address bus to the memory address held in the MAR.
The instruction/data held in that memory address is sent along the data bus to the MDR.
The instruction/data held in the MDR is copied into the CIR.
The instruction/data held in the CIR is decoded and then executed. Results of processing are stored in the ACC.
The cycle then returns to step one.