๐Ÿ’ก 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.


Complete and Continue  
Discussion

0 comments