InterviewSolution
Saved Bookmarks
| 1. |
Convert decimal to octal 2000 say in steps? |
|
Answer» 1. write the given decimal NUMBER 2. if the given decimal number is LESS than 8 then the OCTAL number is same 3. if the given decimal number is greater than 7 then divide the number by 8 4. note the reminder we get after division 5. repeat the step 3 and 4 with the quotient till it is less than 8 |
|