Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
Reading and writing binary numbers requires a consistent understanding of bit order. The position of the least significant bit (LSB) relative to the most significant bit (MSB) is fundamental in arithmetic, shifting, and hardware design documentation.
Given Data / Assumptions:
Concept / Approach:
In positional notation, digits increase in weight from right to left. Therefore, the LSB, with weight 2^0, is placed on the far right of the written number, while the MSB sits on the far left. This mirrors decimal notation, where the ones place is to the right.
Step-by-Step Solution:
Verification / Alternative check:
Example: 10110 has weights (from left) 2^4 to 2^0. The rightmost 0 is the LSB; leftmost 1 is the MSB. Arithmetic and shift operations follow this convention.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing numeral writing order with memory endianness; endianness concerns byte order in memory, not the positional layout of digits on paper or screen.
Final Answer:
Correct
Discussion & Comments