The Mechanics of How Computers Work Flashcards

boolean logic, binary, encoding, ALU, CPU, RAM

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

what is virtual memory?

A

a memory management capability of an operating system (OS) – which uses hardware and software to allow a computer to compensate for physical memory shortages, by temporarily transferring data from RAM to disk storage.

the computer looks at RAM for areas that have not been used recently and copies them onto the hard disk. This frees up space in RAM to load the new application.

It allows users to load multiple applications simultaneously.

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

what is a CPU’s job?

A

to execute programs.

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

what’s a bit?

A

(short for binary digit) is the smallest unit of data in a computer.

A bit has a single binary value, either 0 or 1

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

what’s a byte?

A

a group of binary digits or bits

usually 8 bits

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

what does RAM stand for?

A

random access memory

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

what is RAM?

A

A computer’s short term memory.
It stores data as long as the power is running.

A memory module that lies outside the CPU.
The CPU accesses RAM via a BUS.

RAM memory can be accessed randomly via memory addresses. Any byte of memory can be accessed without touching the preceding bytes.

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

what is the clock part of a CPU?

A

A microchip that regulates the timing and speed of all computer functions.

it triggers an electrical signal at regular intervals which signals the control until to advance internal operations of the CPU.

LIke a drummer on a rowing ship.

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

How many bits is 8 bytes?

A

80 bits

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

how many bytes is 1 kilobyte (KB)?

how many bits is that?

A

1000 bytes

8000 bits

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

how many bytes is 1 megabyte (MB)?

A

1 million bytes

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

how many bytes is 1 gigabyte (GB)?

A

1 billion bytes

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

how many bytes is 1 terabyte (TB)?

A

1 trillion bytes

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

what is 32-bit or 64-bit computers?

A

computers that operate using chunks of 32 or 64 bits.

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

What is ASCII?

A

7 bit code used for allowing computers to represent text as numbers encoded in binary to it can store text.

It can encode characters, upercase, lowercase, symbols, numbers etc.

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

What does ASCII stand for?

A

American Standard Code for Information Interchange

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

what is Unicode?

Why was it created?

A

ASCI only worked for encoding english languages. So Unicode was built as a 64 bit universal encoding scheme for text, chinese, emojis, video, audio, etc.

17
Q

Why was ASCII created?

A

It allows computers to store and exchange text (E.g. your name) that allows different computers built by different companies to exchange information.

Before then, only computers could store and calculate numbers.

18
Q

what is persistent memory?

A

keeps data stored even if the power if not flowing.

19
Q

what is CPU cache?

A

memory built into the CPU which allows it to store small bits of data so it can be retrieved faster by the CPU than the time it would take to fetch data from RAM.

20
Q

what was virtual memory created?

A

So users could run multiple programs simultaneously