Chapter 2 - Data Representation In Computer Systems Flashcards
True or False
The organization of any computer depends considerably on how it represents numbers, characters, and control information
True
The organization of any computer depends considerably on how it represents numbers, characters, and control information
What is a bit?
- A contraction of binary digit
- The most basic unit of information in a digital computer
- Has a value of either 0 or 1
What does the following definition describe:
- A contraction of binary digit
- The most basic unit of information in a digital computer
- Has a value of either 0 or 1
A bit
What is the contraction of the word “binary digit”?
Bit
What is the contraction of the word “bit”?
Binary digit
True or False:
A bit is the most basic unit of information in a digital computer
True
A bit is the most basic unit of information in a digital computer
True or False:
A bit can be any number, ranging from 0 to positive infinity
False
A bit can either be 0 or 1
What values can a bit contain?
Either 0 or 1
What are some ways a bit can be represented in the real world?
- On/Off
- High/Low
What is a byte?
A collection of 8 bits
What does the following definition describe:
A collection of 8 bits
A byte
True or False
18 bits make up a byte
False
8 bits make up a byte
What is a computer word?
Two or more adjacent bytes that are sometimes addressed and always manipulated collectively
What does the following definition describe:
Two or more adjacent bytes that are sometimes addressed and always manipulated collectively
A computer word
What is word size?
The representation of the size of data that is handled most efficiently by a particular architecture
What does the following definition describe:
The representation of the size of data that is handled most efficiently by a particular architecture
Word Size
What are some examples of word sizes?
- 16 bits
- 32 bits
- 64 bits
What is a nibble/ nybble?
One of two 4-bit halves of a byte. Bytes consist of one high-order and one low-order nibble.
What does the following definition describe:
One of two 4-bit halves of a byte. Bytes consist of one high-order and one low-order nibble.
A nibble or nybble
True or False:
Because each bit of a byte has a value within a positional numbering system, the nibble containing the most-valued binary digit is called the low-order nibble, and the other half the high-order nibble
False
Because each bit of a byte has a value within a positional numbering system, the nibble containing the least-valued binary digit is called the low-order nibble, and the other half the high-order nibble
What is a weighted numbering system?
A numeration system in which a value is represented through increasing powers of a radix (or base)
What does the following definition describe:
A numeration system in which a value is represented through increasing powers of a radix (or base)
A weighted numbering system
What is an example of a weighted numbering system?
- Binary
- Decimal
What is a radix?
The base of a number system
What does the following definition describe:
The base of a number system
Radix
True or False:
The set of valid numerals for a positional numbering system is equal in size to the radix of that system
True
The set of valid numerals for a positional numbering system is equal in size to the radix of that system
What would be the largest valid number in the decimal system?
9
The radix of the decimal system is 10, and the set of valid numerals are all numbers between 0 and 9
What are the two most important radices in computer science?
- Binary (base 2)
- Hexadecimal (base 16)
What values are allowed in hexadecimal?
0-9, A, B, C, D, E, F
What is the representation of the following:
243.5110
243.5110 = (2 x 102) + (4 x 101) + (3 x 100) + (5 x 10-1) + (1 x 10-2)
What is the following representation:
(1 x 24) + (0 x 23) + (1 x 22) + (1 x 21) + (0 x 20)
101102 = (1 x 24) + (0 x 23) + (1 x 22) + (1 x 21) + (0 x 20)
Convert 53810 into Base 8 using subtraction
Answer:
53810 = 10328

Convert 53810 into base 8 using division
Answer:
53810 = 10328

Convert 14710 into binary
Answer
14710 = 100100112

True or False:
A binary number with N bits can represent unsigned integers from 0 to 2N + 1
False
A binary number with N bits can represent unsigned integers from 0 to 2N − 1
Ex: 4 bits => 24-1 = 16-1 = 15
How many unsigned integers can 32 bits represent?
32 bits => 232-1 = (4.294967296 x 109)- 1
What is overflow?
- A condition where a register is not large enough to contain the result of an arithmetic operation
- In signed arithmetic operations, overflow is detectable when the carry into the sign bit does not equal the carry out from the sign bit
What does the following definition describe:
- A condition where a register is not large enough to contain the result of an arithmetic operation
- In signed arithmetic operations, overflow is detectable when the carry into the sign bit does not equal the carry out from the sign bit
Overflow