If I’m given a binary digit say 1101, how will i identify whether it is of the unsigned or signed format?
If it is unsigned, means positive, so 8+4+0+1=13
If it is signed, then by using 2’s complement notation, 1101
should be = -3.
So how do i resolve this discrepancy?