

InterviewSolution
Saved Bookmarks
1. |
Convert decimal number 781 to its binary equivalent |
Answer» To convert decimal number 781 to binary, follow these steps:Divide 781 by 2 keeping notice of the quotient and the remainder.Continue dividing the quotient by 2 until you get a quotient of zero.Then just write out the remainders in the reverse order to get binary equivalent of decimal number 781.Using the above steps, here is the work involved in the solution for converting 781 to binary number:781 / 2 = 390 with remainder 1390 / 2 = 195 with remainder 0195 / 2 = 97 with remainder 197 / 2 = 48 with remainder 148 / 2 = 24 with remainder 024 / 2 = 12 with remainder 012 / 2 = 6 with remainder 06 / 2 = 3 with remainder 03 / 2 = 1 with remainder 11 / 2 = 0 with remainder 1Then just write down the remainders in the reverse order to get the answer, The decimal number 781 converted to binary is therefore equal to :1100001101Here are some examples of converting decimal to binary | |