InterviewSolution
Saved Bookmarks
| 1. |
In a signed integer, the sign is represented by ___________(a) Least significant bit(b) Most significant bit(c) System dependent(d) The mean of the most significant bit and the least significant bitThe question was asked in quiz.My enquiry is from Signed Qualifier in section Miscellaneous Topics in C of C |
|
Answer» CORRECT OPTION is (b) Most significant bit For explanation: In a signed INTEGER, the most significant bit represents the sign whereas, in an unsigned integer, no bit is used to REPRESENT the sign. |
|