Data Storage Flashcards

(23 cards)

1
Q

What is the basic element of digital storage called?

A

A bit (from binary digit).

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

What are bits grouped together into?

A

Sequences called cells.

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

What is a cell of 8 bits called?

A

A byte

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

What are other common cell sizes and what are they called?

A

A sequence of 16 bits is often called a word, and a sequence of 32 or 64 bits may be called a long word.

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

What does the store consist of?

A

The store consists of a collection of cells.

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

How is each cell in the store identified?

A

Each cell in the store is given an address, usually a positive integer starting at zero and going up.

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

What is the smallest addressable unit of a store?

A

A cell

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

What makes up the contents of a cell?

A

The states of the bits of a cell

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

How is it more normal to represent cell contents?

A

It is more normal to represent the states as binary digits and write the cell contents as 0s and 1s, for example 001011101.

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

What do the symbols A/B or 0/1 represent in cell contents?

A

Whether written as A and B or as 0 and 1, they are just representations of the two states of the device.

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

What is unique about each cell in the store?

A

Each cell in the store has a unique address that identifies it.

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

How are cell addresses numbered in a store with m cells?

A

Addresses are numbered from 0 to (m−1) for a store with m cells.

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

Once a cell has been located at a specific address, what can be done with it?

A

Once located, a cell’s contents can be examined or changed.

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

What is sequential access?

A

In sequential access, the time to access a cell with a given address depends on the address of the cell just accessed.

Have to go in order, cannot just go to whatever address you want like in RAM

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

What is random access memory (RAM)?

A

What is random access memory (RAM)?

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

What type of memory does main memory use?

A

Main memory uses DRAM.

17
Q

What type of memory does cache memory use?

A

Cache memory uses SRAM.

18
Q

Why can’t we tell what cell contents represent just by looking at them?

A

The contents of cells are simply bit patterns, so it is impossible to tell by looking at them whether they represent data or instructions.

19
Q

In a von Neumann architecture, what do the contents of cells at different addresses represent?

A

In a von Neumann architecture, the contents of some addresses represent instructions, while others represent data.

20
Q

What are addresses themselves, and where can they be stored?

A

Addresses are positive integers, and they themselves can be stored in cells as pieces of data.

21
Q

What is an address space?

A

An address space is the range of addresses a system or CPU can use

22
Q

Can the same address refer to different locations?

A

Yes, the same address may refer to different locations in different address spaces.

23
Q

What determines the size of an address space?

A

The length of the addresses determines the size of the address space.