INFORMATION WEEK 1 Flashcards

1
Q

Description: Program instructions and program data stored in bits in RAM.

A

Term: Information stored in a computer

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

Description: A system for interpreting information stored in RAM where each bit can be either on (represented by 1) or off (represented by 0).

A

Term: Binary numbering system

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

Description: A system for interpreting information stored in RAM that uses base-16 where each digit can be one of 16 possible values (0-9 and A-F).

A

Term: Hexadecimal numbering system

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

Description: The most fundamental unit of a modern computer that is either on or off (1 or 0).

A

Term: Bit

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

Description: The fundamental addressable unit of RAM consisting of 2 nibbles, with each nibble containing 4 bits.

A

Term: Byte

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

Description: Half of a byte that contains 4 bits.

A

Term: Nibble

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

Description: A system of numbering based on the number 10, with each digit representing a multiple of a power of 10.

A

Term: Decimal Value

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

Description: The representation of a bit as either on (1) or off (0).

A

Term: Bit Value

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

Description: The way that different groups of bits stored in the part of RAM associated with a program are addressed.

A

Term: Memory Model

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

Note: One byte can store any one of 256 (28) possible values in the form of a bit string, with the equivalent decimal values ranging from 0 to 255.

A

Note: One byte can store any one of 256 (28) possible values in the form of a bit string, with the equivalent decimal values ranging from 0 to 255.

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

Definition: The natural size of the execution environment, consisting of an integral number of bytes and typically the size of the CPU’s general registers. Word size varies from CPU to CPU.

A

Term: Word

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

Definition: A numbering system (base 16) used for organizing information, more convenient than the decimal system. Two hexadecimal digits hold the information stored in one byte.

A

Term: Hexadecimal

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

Definition: The linear organization of information stored in RAM, accessible through a map that treats each physical memory location as a position in a continuous sequence of locations.

A

Term: Memory Model

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

Definition: Each byte of RAM has a unique address, with addressing starting at zero, being sequential, and ending at the address equal to the size of RAM less 1 unit.

A

Term: Addresses

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

Definition: The smallest unit of addressable memory in RAM, with each byte having its own unique address. RAM is byte-addressable.

A

Term: Bytes

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

Definition: Abbreviations for sets of bytes, including kilobyte (k), megabyte (M), gigabyte (G), terabyte (T), petabyte (P), and exabyte (E), with each set consisting of a multiplication factor of 1024.

A

Term: Sets of Bytes

17
Q

Definition: The maximum size of memory that the CPU can access, depending on the size of its address registers, with the highest accessible address being the largest address that an address register can hold.

A

Term: Limit on Addressability

18
Q

Definition: Errors that occur when attempting to execute data or overwrite an instruction in RAM, caused by certain architectures assigning data read and write permissions while assigning instructions read and execute permissions. Such errors report an error and are called segmentation faults.

A

Term: Segmentation Faults