Computer Systems

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/25

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

26 Terms

1
New cards

What is the purpose of a computer?

To take data, process and output it. Computers were made to help process data and complete tasks more efficiently than humans.

2
New cards

What is hardware?

The physical stuff that makes up your computer:

CPU

Motherboard

Monitor

3
New cards

What is software?

The programs that your computer runs on. There is application software which are programs that help the user perform specific tasks and there is system software which is operating systems.

4
New cards

What is an embedded system?

A computer built into other devices like microwaves and TVs. They are often used as control systems and are dedicated to single tasks.

5
New cards

What are the main parts of a computer?

Power supply

Case cooling fan

CPU heat sink and cooling fan

CPU

Optical drive

RAM sticks

Motherboard

Hard Disk Drive

<p>Power supply</p><p>Case cooling fan</p><p>CPU heat sink and cooling fan</p><p>CPU</p><p>Optical drive</p><p>RAM sticks</p><p>Motherboard </p><p>Hard Disk Drive</p>
6
New cards

What is the CPU?

The Central Processing Unit is the brain of the computer system. It processes all of the data for the system.

7
New cards

What are the 6 main parts of the CPU?

The Control Unit (CU)

The Arithmetic Logic Unit (ALU)

Cache

The Clock

Buses

Registers

8
New cards

The Control Unit

The overall control of the CPU. It manages the FDE cycle and controls the flow of data.

9
New cards

The Arithmetic Logic Unit

The ALU does all the simple calculations and logic operations. Registers store the immediate results.

10
New cards

Cache

The very fast memory in the CPU (slower then registers but faster then RAM) that stores regularly used data for quick access.

11
New cards

The Clock

It sends put a signal that continually cycles between 1 and 0 at a constant rate. This signal is used ti synchronise when instructions will be carried out. The number of clock cycles per second is called clock speed.

12
New cards

Buses

A collection of wires used to transmit data between components of the CPU and other parts of the computer system.

13
New cards

Registers

Storage that temporarily holds tiny bits of data needed by the CPU and are super quick.

14
New cards

What is the Fetch-Decode-Execute Cycle?

The FDE is what the CPU does to carry out instructions. It fetches the instruction from the memory and decodes it in the control unit and executes the instruction.

15
New cards

What are the four types if memory?

RAM

ROM

Cache

Registers

16
New cards

RAM

Random Access Memory is used as main memory and is volatile. It is where all data, files and programs are stored.

17
New cards

ROM

Read Only Memory is non-volatile memory that can only be read. It is the instructions for the computer to boot up.

18
New cards

What are the two types of storage?

Primary Storage - The memory areas that the CPU can access directly.

Secondary Storage - Non-volatile storage that isn’t directly accessed by the CPU.

19
New cards

What are HDDs?

Hard drive disks are the traditional internal storage in PCs and laptops. It is made up of magnetic metal disks and data is stored magnetically. It has a metal head which writes 0s and 1s on magnetic North or South.They are slow but reliable.

20
New cards

What are SSDs?

Solid State Drives have no moving parts. They store data in electrical circuits by trapping electrons in floating gate transistors. They are fast, reliable but expensive.

21
New cards

What are optical discs?

Optical Discs are things like DVDs or CDs. They store data in pits and lands. There are less popular now due to more advanced methods like streaming and downloading. They are cheap, portable but are easily scratched.

22
New cards

What are the main functions of an Operating System?

Communication with Input and Output devices:

It allows the computer to take inputs and outputs.

Provide a platform for applications to run on:

It manages applications and access hardware

Control memory management:

It manages all memory and RAM access

Organise the CPU:

Determines the most efficient order for the CPU

Manage System Security:

Controls many ways to keep stored data secure

23
New cards

What are some utilities of a computer?

Defragmentation - Rearranging files to create more space.

Disk Health - Scans the drive for problems and fixes issues.

System Cleanup - Deletes unnecessary files.

Compression - Reduces file sizes for space.

Virus Scanners - Used to inspect files.

24
New cards

What is a Translator?

A program that allows source code to be understood and executed by the computer.

25
New cards

What is the difference between High and Low level language?

High-Level Language:

One instruction represents many instructions of machine code. Easy for humans to understand but not computers as they must translate it. Easy to read, understand and modify.

Low-Level Language:

One instruction usually represents one instruction of machine code. Easy for computers to understand but not humans. Tricky to read, understand and modify.

26
New cards

What are Compilers, Interpreters and Assemblers?

Assemblers - Translates Assembly language to Machine code.

Compilers - Translates high-level language into Machine code.

Interpreters - Call machine code subroutines to carry out an instruction.