Grade 11 Text Book LU 2 Flashcards

1
Q

Name the 2 Parts to the CPU

A

Control Unit (CU)
Arithmetic Logic Unit (ALU)

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

What do the parts of the CPU contain

A

Registors

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

What does the CU do?

A

The CU section of the CPU controls the execution of each instruction.

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

What does the ALU do?

A

Calculations and logical comparisons.

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

What does the accumulator do?

A

The accumulator is the register that stores the result of each execution. When data is saved, it is written from the accumulator to RAM.

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

What is the purpose of registers and what ram is it made from?

A

The purpose of the registers is to store the current instruction and its data. These registers are made from a fast type of RAM called static RAM (SRAM).

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

What is SRAM?

A

This type of RAM is extremely fast but very expensive. SRAM does not contain capacitors which have to be constantly refreshed increasing the access time of SRAM.

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

What is Serial Processing?

A

The processor had a single core where the problem was broken into a set of instructions that are executed sequentially, one after the other, and on a single processor.

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

What is parallel processing?

A

The concept of parallel processing is a method of simultaneously breaking up and running program instructions on multiple microprocessors, thereby reducing processing time. Another way is if the user runs different programs simultaneously, each program can run on its own processor.

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

What is hyperthreading?

A

Hyperthreading was developed before it was possible to create separate cores on a single processor chip, by duplicating the registers on the chip. This allowed the next instruction to be preloaded into a second set of registers while the first set of registers was being processed reducing the time it took switch between instructions.

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

Who developed hyperthreading?

A

developed in 2002, Intel’s first effort in parallel processing.

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

What is Multiprocessing?

A

Multiprocessing is having multiple CPUs, called cores, on a single CPU chip. Many processes can run at the same time instead of appearing to run at the same time.

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

What is cache memory

A

Cache memory stores blocks of program instructions and data that have been pre-fetched from RAM in the hope that these instructions or data will be needed next by the CPU. Between the CPU and RAM, cache memory exists. It is made from SRAM (static RAM) chips, which have faster access speed than DRAM (dynamic RAM, normal RAM).

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

The different levels of cache and describe them

A

Level 1 cache is a very small amount of memory built-in with the internal circuitry of the CPU chip. L1 cache usually has the same speed as the CPU’s internal speed.
* Level 2 cache memory can be located on the CPU chip, slightly further away from the internal CPU circuits. L2 cache is usually slightly larger than L1 cache, and usually has slower access, running at half the CPU’s internal speed.
* Many motherboards also have Level 3 cache on the actual board itself, but closer to the CPU than RAM. L3 is larger and has slower access than L1 and L2.

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

What does the cache do?

A

Cache (pronounced cash) stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsewhere.

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

What is RAM?

A

RAM is the main memory in chips on modules attached to dedicated slots on the motherboard. RAM stores the programs currently in use and the data associated with them.

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

What is DRAM?

A

DRAM stands for Dynamic RAM which is the type of chip used for this memory. Each DRAM chip contains a capacitor which loses its charge and must be refreshed many times per second

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

What is SDRAM?

A

The S in SDRAM stands for Synchronous DRAM. The refreshing of the RAM chips is synchronised with the CPU so that the CPU does not have to wait while refreshing takes place.

19
Q

What does DDR mean?

A

Double Data Rate (DDR) means that data is transferred twice as fast as when data was transferred only once every clock pulse.

20
Q

What is latency?

A

An important aspect of all RAM (and other components) is latency which is the time taken for a component to respond. Leads to waisted clock ticks.

21
Q

What is a motherboard?

A

A motherboard is a central printed circuit board that connects components and devices to each other.

22
Q

Why is a clock generator needed on a motherboard?

A

To synchronise all computer opperations.

23
Q

What is System Clock?

A

In general, the clock refers to a microchip that regulates the timing and speed of all computer functions. Within this chip is a crystal that vibrates at a specific frequency when electricity is applied.

24
Q

What is overclocking?

A

Overclocking is the practice of making computer components run at speeds faster than designed by manipulating the frequencies at which the component is set to run.

25
Q

2 Different ways of overclocking

A
  • Per component - the CPU operates faster than the system clock by changing its own clock multiplication factor.
  • The whole system – the system clock is increased affecting all components that detect the system clock and multiply by a factor.
26
Q

How can overclocking be achieved?

A

Overclocking can be achieved by either increasing the system clock or the clock multiplication factor to increase the frequency of a component.

27
Q

3 Different types of cooling

A
  • Fans
  • Liquid cooling
  • Heat sinks
28
Q

Difference between Speed/bandwidth and Throughput

A

The speed referred to as bandwidth, is the theoretical speed of data, whereas throughput (caused by latency and other factors) is the actual speed of data.

29
Q

What is a internal buss/Front side buss

A

FSB was initially a parallel bus that connected all components on the motherboard. Since then, point-to-point serial connections replaced the FSB in other connections (SATA, PCI Express, and DMI). Front-side buses usually connect the CPU and RAM.

30
Q

What is a data bus?

A

The data bus transfers the actual instruction or data between the CPU and RAM.

31
Q

What dictates the size of the registers?

A

The number of bits that the data bus can deliver to the CPU dictates the size of the registers on the CPU.

32
Q

What does the size of the registers indicate?

A

The register size indicates how much information the processor can operate on at one time and how it moves data around internally within the chip.

33
Q

What it the address bus?

A

An address bus transfers the physical address of the instruction or data between the CPU and RAM.

34
Q

What does a bigger address bus do?

A

The width of the address bus determines the amount of memory a system can address.

35
Q

What it the Control Bus?

A

The control bus carries commands between the CPU and RAM, for example if the data is being read or written to the device the appropriate (read or write) signal will be sent.

36
Q

What is an External Bus?

A

There are many important buses that are external to the motherboard to attach external devices.

37
Q

What is a PCI Express?

A

PCI Express (Peripheral Component Interconnect Express) slots are used to connect graphics cards, RAID cards, Wi-Fi cards or SSD’s (Solid-State Drives) to the motherboard.

38
Q

What is SATA

A

A Serial Advanced Technology Attachment (SATA) is a computer bus interface used to connect mass storage devices such as hard drives to a computer motherboard. SATA 3 interface can work with SATA 2/1 Ports but will be slower (Backwards compatible)

39
Q

What is a USB?

A

Universal Serial Bus (USB) technology was designed to standardise the connection of just about any peripherals to computers, both to communicate and to supply electric power.

40
Q

What is NVMe?

A

Non-Volatile Memory Express NVMe is computer communication bus interface that connects SSDs to the motherboard. The bus allows SSDs to read/write at a much higher speed than via a SATA communication bus.

41
Q

What is M.2 Format?

A

The M.2 format is designed for manufacturers to install a variety of high-speed devices that require very little power, in small spaces. M.2 cards include Wi-Fi and Bluetooth radios and SSDs. The M.2 slot can use any of the following communication buses: SATA 3.0; PCI Express 3.0, USB 3.0 and NVMe.

42
Q

What is Disk Cache?

A

Disk Cache is a hardware mechanism for improving the time it takes to read from or write to a hard disk. Instead of reading data line by line from a slower disk drive, the line and the next few lines are read into the cache

43
Q

What is browser cache?

A

Every time a website is accessed, a copy of the website is kept in the browser cache on your local hard disk. This cache also stores all files you have downloaded from the web including web pages, images, music, videos and it also stores all cookies.