hardware Flashcards

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

A computer in which the processing instructions are stored in memory with the data is called a

A

Stored-program computer or von Neumann architecture computer

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

In von Neumann architecture computer:

A

The hardware device that does the processing is called the central processing unit (CPU).
* The storage is called main memory/random access memory (RAM). This is a temporary store for data and instructions (programs).
* Each memory location has unique memory address.

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

What happens when writing

A

When the CPU saves data into memory it is called writing

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

What happens when reading

A

when the CPU retrieves the data stored at a given address

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

what is a memory address

A

a number that uniquely identifies a storage/memory location.

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

what is a bus

A

a group of connecting wires (parallel wires). CPU and main memory are connected to each other, and to the input and output (I/O) devices by a bus

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

What does the CPU use the bus do

A

to tell the memory what data to save and where in the memory to save it. (i.e., when the CPU sends data to memory to be stored at a given address)

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

Input devices

A

keyboard, mouse, and touch screen

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

output devices

A

Monitor, Speaker, and touch screen

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

what is RAM

A

Random Access Memory
A temporary store that the CPU uses for currently running/using data, programs (instructions) and the part of the operating system (OS) currently being used.
RAM is typically measured in giga bytes (GB).
RAM is a volatile memory. Contents are erased when the power is turned off.

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

what is ROM

A

Read Only Memory
Non-volatile memory. Contents are no lost when the power is turned off.
ROM memory cannot be altered.
Programs permanently stored in ROM are known as firmware.
These programs are small, provided by the manufacturers and carry out specific task such as:
- Initializing hardware components
- Starting the operating system when the computer is switched on.
e.g.
BIOS – Basic Input/Output system or
UEFI – Unified Extensible Firmware Interface – this is now the standard firmware used in desktop computers.

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

What is cache memory

A

Cache memory is a memory used to make up for the difference in speed between two internal components.
This is kind of primary memory.
This is a small amount of fast, expensive memory that is used between two devices that communicate at different speeds, most often the CPU and RAM.
In the CPU cache, frequently used code or data is loaded in chunks from the slower RAM into the cache.
The CPU access the cache memory at its own, faster speed.
This means the CPU is not slowed down by having to wait data from the RAM.

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

What is cache miss

A

when the data requested for processing by a component or application is not found in the cache memory and the CPU has to wait for the cache to reload with the correct data.
CPU technology developed much faster than RAM. RAM in newer computers no longer keep up with the demands of the CPU. This caused a bottleneck (where something is working at a full capacity and cannot handle further demand) that limited the performance of computers.
Cache memory was introduced to solve this problem

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

What is a microprocessor

A

the central unit that executes and manages the instructions passes to it.

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

What is buffer

A

temporary storage created for data transmitted from one part of the system to another which functions as a queue
Most I/O devices have memory between themselves and the main system because they communicate at different speeds. This is called a buffer.
e.g. disk buffer, printer buffer or frame buffer for graphics.
Data is transferred at high speed between processor and this memory. The CPU can then continue with other tasks while the I/O device takes data from its buffer at a slower rate.

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

What is virtual memory

A

A mechanism that allows a program to use more memory addresses that are available in main memory.
Virtual memory is usually the hard disk (drive).
The ‘memory manager’ program of the operating system will use virtual memory to store some of the data when RAM becomes full.

It works like this:
* A process running on the computer may need to store data in the physical memory.
* If there is no free memory, the memory manager will swap out some of the data stored in RAM to the swap area on the hard disk drive and will swap in the requested data into the now free area.
* Usually, the least recent used stored data is swapped out.
* If data is swapped out and then is needed again, it is swapped back in from the swap area, at the expense of other data.