Computer Science, asked by Kastu7973, 8 months ago

Ratika,s computer teacher has asked her to convert an octal number to decimal number. Suggest her the method which she should apply in converting the octal number.

Answers

Answered by TheArkhamKnight
7

Answer:

Octal Example: 547

Start with

x=0

add the first digit - x=5

Now since there are more digits to follow multiply by 8 (because it's an octal number) - x=40

add the next digit  - x=(40+4)=44

Now since there are more digits to follow multiply by 8 - x=352

add the next digit x=352+7=359

Now since there are no more digits we are done.

Hope this helps! :)

Explanation:

Similar questions