InterviewSolution
| 1. |
Convert Ocatal (3674), to Binary.Decimal to Hex |
|
Answer» You ENTER the number: 36748 in Octal number system and want to translate it into Binary. To do this, at FIRST translate it to decimal here so : 36748 = 3∙83+6∙82+7∙81+4∙80 = 1536+384+56+4 = 198010 Happened: 198010 Converting 198010 in Binary system here so: Whole part of a number is obtained by dividing on the basis new 1980 2 -1980 990 2 0 -990 495 2 0 -494 247 2 1 -246 123 2 1 -122 61 2 1 -60 30 2 1 -30 15 2 0 -14 7 2 1 -6 3 2 1 -2 1 1 Translation of numbers from one system to another Happened:198010 = 111101111002 Result of converting: 36748 = 111101111002 Hope it helps . Explanation: |
|