๐ก Activity Solution
๐ก Activity Solution
1๏ธโฃ What is a bit?
- Bit: The smallest unit of information in computing; it can be 0 or 1.
2๏ธโฃ What is a crumb?
- Crumb: A small group of 2 bits.
3๏ธโฃ What is a nibble?
- Nibble: A group of 4 bits (half of a byte).
4๏ธโฃ What is a byte?
- Byte: A collection of 8 bits (2 nibbles or 4 crumbs).
5๏ธโฃ How many bits are in a byte?
- Bits in a byte: 8 bits.
6๏ธโฃ How many crumbs are in a byte?
- Crumbs in a byte: 4 crumbs (8 bits รท 2 bits per crumb).
7๏ธโฃ How many nibbles are in a byte?
- Nibbles in a byte: 2 nibbles (8 bits รท 4 bits per nibble).
8๏ธโฃ How many crumbs are in a nibble?
- Crumbs in a nibble: 2 crumbs (4 bits รท 2 bits per crumb).
9๏ธโฃ What is the lower nibble?
- Lower nibble: The rightmost 4 bits of a byte (least significant half).
๐ What is the upper nibble?
- Upper nibble: The leftmost 4 bits of a byte (most significant half).
1๏ธโฃ1๏ธโฃ What is LSB, why do we call it LSB, and what is its value?
- LSB (Least Significant Bit):
- Itโs the rightmost bit in a binary number.
- Called โleast significantโ because it has the smallest weight (2โฐ = 1).
- Its value contributes the least to the overall binary value.
1๏ธโฃ2๏ธโฃ What is MSB, why do we call it MSB, and what is its value?
- MSB (Most Significant Bit):
- Itโs the leftmost bit in a binary number.
- Called โmost significantโ because it has the highest weight (2โท = 128 in an 8-bit byte).
- Its value contributes the most to the binary value, often used to indicate sign or priority.
0 comments