

InterviewSolution
Saved Bookmarks
1. |
What is the binary equivalent of decimal number `(0.8125)_(10)`?A. `(0.1101)_(2)`B. `(0.1001)_(2)`C. `(0.1111)_(2)`D. `(0.1011)_(2)` |
Answer» Correct Answer - A Work with option `(0.1101)_(2)=1xx2^(-1)+1xx2^(-2)+1xx2^(-4)` `=(1)/(2)+(1)/(4)+(1)/(16)=(13)/(16)=(0.8125)_(10)`. Hence option (a) gives the binary equivalent of given decimal number. |
|