উত্তর
ব্যাখ্যা
A signed negative binary number is recognized by its Most Significant Bit (MSB). In binary representation, the MSB is the leftmost bit in a number. For signed numbers, the MSB determines the sign: if the MSB is 1, the number is negative, and if it is 0, the number is positive. This is based on the two's complement method, commonly used for representing signed binary numbers.
For example, in an 8-bit system (1 byte), a number like 11111111 represents -1, while 00000001 represents +1. The MSB in these numbers indicates the sign, with 1 indicating negative and 0 indicating positive. This allows the system to distinguish between positive and negative values based on just the MSB.
The Least Significant Bit (LSB), on the other hand, represents the smallest value in the binary number and does not provide any information about the sign. Byte and Nibble refer to data size (8 bits and 4 bits, respectively) but do not directly indicate whether a number is positive or negative.