Computer Systems (Paper 1 & 2) Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is hardware?

A

The physical components of the computer

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

What is software?

A

Programmes installed into a computer

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

What is system software?

A

Manages the computer and allows to user to interact with it eg operating systems

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

What is application software?

A

Software that is downloaded onto a computer eg Microsoft Word

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

What is the role of the CPU?

A

It fetches and executes instructions and keeps the computer running

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

What is the main role of the ALU?

A

The ALU performs logical and math instructions and also does binary shifts

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

What is the role of the control unit?

A

Coordinates all activities taking place in the CPU

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

What is the role of the clock?

A

Keeps the CPU in sync and with each ‘tick’ an instruction is decoded or carried out

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

What is the role of the buses?

A

They fetch instructions or data from different parts of the computer

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

What effect does clock speed have on the computer?

A

The faster the clock, the faster the computer as it can process more instructions however it decreases the lifespan of the computer if the clock goes too quickly

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

What effect do cores have on the computer?

A

If the processor has more cores, it can process multiple times faster eg if it had dual core it can process double the original speed

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

What effect does cache have on the computer?

A

Cache allows frequently used instructions to be stored closer to the processor than if it was stored in storage or RAM so it allows the computer to run faster

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

What are the main differences between memory and storage?

A
  • memory is usually volatile and storage is usually non- volatile
  • memory is stored closer to the processor than storage
  • storage is bigger
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the three types of hardware storage?

A

Optical, magnetic and solid state

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

What are 3 advantages of optical storage?

A
  • Easy to store and carry
  • Can be used in multiple devices
  • Long Lasting (with proper care)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are 3 disadvantages of optical storage?

A
  • Require special drives to read/write
  • Expensive GB/TB storage
  • Can be easily damaged
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

How does optical storage store data?

A

It works by reflecting light to read data. Writing to the disk is achieved using a laser beam to record data.
Data is stored in form of tiny pits arranged in concentric tracks on the disk’s surface. Disk’s surface is covered in dents(pits) and flat spots(lands). These reflect the light in different ways. The dents and flat spots represent 0’s and 1’s.

18
Q

Name 3 examples of optical storage

A

CD, DVD, Blu-Ray

19
Q

Name 3 examples of Solid State Storage

A

USB, Solid State Drives (SSD), SD cards

20
Q

What are 2 disadvantages of Solid State Storage?

A
  • More expensive than most other storage

- Limited lifecycle (1000 read/write cycles)

21
Q

What are 3 advantages of Solid State Storage?

A
  • Very fast access speed
  • Small and light
  • Quiet (no moving parts)
22
Q

How does Solid State Storage store data?

A

It consists of transistors that hold their charge when powered off. All start at 1 (on) but when saving data, some are blocked and become 0 (off). This allows data to be stored in binary.

23
Q

What are 3 disadvantages of magnetic storage?

A
  • Loud (moving parts)
  • can overheat easily
  • more bulky than SSS
24
Q

What are 2 advantages of magnetic storage?

A
  • can usually store more data than SSS or optical

- cheaper than SSS

25
Q

What is cloud storage?

A

Where the data is stored on a server and can be accessed via the internet

26
Q

What are 2 examples of cloud storage?

A
  • Google Drive

- Dropbox

27
Q

What are 3 advantages of cloud storage?

A
  • low maintenance costs
  • can be accessed via multiple devices
  • easy to upgrade
28
Q

What are 2 disadvantages of cloud storage?

A
  • more accessible to hackers

- reliant on an internet connection

29
Q

What is the computer system for input/output?

A
input - processor - output
                 l       l
               memory
                  l      l
                 storage
30
Q

Name 3 input devices

A

Keyboard, touchscreen, mouse

31
Q

Name 3 output devices

A

speakers, printer, screen

32
Q

Name 3 factors that can affect the performance of a computer

A
  • clock speed
  • amount of cache
  • number of cores
33
Q

define secondary storage

A

Secondary Storage is storage that can store data when there is no power. It cannot be accessed directly by the CPU.

34
Q

What is RAM?

A

Random Access Memory. It is volatile and stores programs while they are running

35
Q

What is ROM?

A

Read Only Memory. It is non-volatile and holds the setup instructions for the computer

36
Q

Name the 5 things that the Operating System manages

A
  • processor
  • memory
  • input / output devices
  • applications
  • security
37
Q

What is an embedded system?

A

An embedded system is an operating system with a specific function within a larger mechanical or electrical system.

38
Q

What is a non embedded system?

A

A non embedded system has a more general purpose than an embedded system and can operate multiple varying functions

39
Q

What happens in fetch in fetch decode execute?

A
  • Address of instruction is fetched from a memory register
  • Register incremented so it points to next instruction to be executed
  • Instruction put into a special register ready to be decoded
40
Q

What happens in decode in fetch decode execute?

A

the control unit decodes the instructions

41
Q

What happens in execute in fetch decode execute?

A
  • instruction is executed
  • depending on type of instruction different things could happen
  • eg could involve fetching data from memory or jumping a line in a program