Quiz 3 - Internal Memory, GDB Flashcards

1
Q

Which type of memory is used for main memory?

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

What is a Hard Failure?

A

A permanent physical defect in memory

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

What is SDRAM?

A

Synchronous Dynamic Random Access Memory

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

What is ROM?

A

Memory that can only be read

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

If a charge is found within the capacitor of a memory cell, it is said to be what value?

A

1

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

In GDB how can a memory address 0x404036 be displayed in hex?

A

x/x 0x404036

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

How does DDR accomplish double data rates?

A

By using a higher clock rate on the bus
By synchronizing on the rising and falling edge of the clock
By using a buffering scheme

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

What are the primary error types in memory?

A

Soft Error
Hard Failure

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

What is the main component of a Static Ram cell?

A

Flip Flop

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

What makes DRAM dynamic?

A

The tendency for charge to leak away

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

T or F: ROM is volatile.

A

False

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

How is data placed into embedded ROM chips?

A

It is wired into the chip during fabrication

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

In GDB how can the contents of the registers be displayed?

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

________________ is cheaper, simpler, and smaller while ________________ is faster and more stable.

A

DRAM , SRAM

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

What makes SDRAM Synchronous?

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

What x86 Assembly command moves data between registers?

A

mov

17
Q

When declaring a variable, what does the ? indicate?

A
18
Q

What does the following line of x86 Assembly create?

Foo TIMES 8 DB 4

A

An array of 8 bytes each containing the value 4

19
Q

T or F: Data can be moved from one memory location directly to another using x86 assembly.

A

False

20
Q

What does the following line of x86 Assembly create?

Fun DD 1, 2, 3

A

An array of three doublewords containing 1, 2, and 3 respectively