Computer Science, asked by vanshkuma135, 14 days ago

Applications base question: Anjali was asked by her teacher to cover Decimal number system to Binary number system and Decimal number to octal number system. Can you help her by telling the method of conversation?​

Answers

Answered by anuskabanik2
1

Answer:

These are the answers

Explanation:

How to convert decimal to binary

Conversion steps:

Divide the number by 2.

Get the integer quotient for the next iteration.

Get the remainder for the binary digit.

Repeat the steps until the quotient is equal to 0.

How to convert from decimal to octal

Conversion steps:

Divide the number by 8.

Get the integer quotient for the next iteration.

Get the remainder for the octal digit.

Repeat the steps until the quotient is equal to 0.

Similar questions