InterviewSolution
Saved Bookmarks
| 1. |
Octal to decimal78please explain step by step |
|
Answer» Formula(Octal to Decimal): LET Octal number have ‘n’ digits.F(n) = (Last Digit)*POW(8,0) + (Second last digit)*pow(8,1) + … + (FIRST digit)*(8,n-1).EXAMPLE:Decimal = 116Octal = 78 |
|