Original question: Express the bit string 11001110 as a decimal quantity, first interpreted as an unsigned quantity, and second interpreted as a two’s complement quantity.
So, for the bit string 11001110, its complement is 00110001, which is 49 in decimal, right?
But I am not sure what the question is asking. Is the bit string 11001110 is already a complemented version? Or am I asked to find its complement and convert it into decimal?
Second, 11001110 is 206 in decimal; since two's complement uses the most significant bit as a sign bit, then 206 cannot be represented in two's complement right (due to overflow, assuming only 8-bit used)? It will be negative. But 00110001 the most significant bit is 0, which means the quantity is positive? I am confused...