Computer Science, asked by parthtripathi45, 10 months ago

Convert the following___
Binary - decimal
Decimal - Binary.
Binary - Octal
octal - Binary
Hexadecimal Conversion​

Answers

Answered by prathyusha43
2

Answer:

binary to decimal-take a number and divide it and remainder should be on right side.all the remainders in reverse order Is the conversion of binary to decimal.

decimal to binary-after getting numbers in binary system,multiply the numbers with 2^0+2^1 so on.

binary to octal-multiply numbers with 8^0

octal to binary-multiply numbers with 2^0

hexadecimal conversion-multiply numbers with 12^0.

Answered by divyabisht099
2

Answer:

converting binary into octal hexadecimal -A repeated division and remainder algorithm can convert decimal to binary, octal, or hexadecimal.

Divide the decimal number by the desired target radix (2, 8, or 16).

Append the remainder as the next most significant digit.

Repeat until the decimal number has reached zero.

converting binary to octal - So, these are following steps to convert a binary number into octal number.

Take binary number.

Divide the binary digits into groups of three (starting from right) for integer part and start from left for fraction part.

Convert each group of three binary digits to one octal digit.

converting binary into decimal - An easy method of converting decimal to binary number equivalents is to write down the decimal number and to continually divide-by-2 (two) to give a result and a remainder of either a “1” or a “0” until the final result equals zero.

Similar questions