Binary Conversion
Octal Conversion
Hexadecimal Conversion
Introduction
Binary
Converstion
A binary number system is one of the four types
of number system. In computer applications,
where binary numbers are represented by only
two symbols or digits, i.e. 0 (zero) and
1(one). The binary numbers here are expressed
in the base-2 numeral system. For example,
(101)2 is a binary number.
Binary to decimal
Decimal to
Binary
Octal
Conversatio
A n
number system expressed with
base-8 and whose range is from
0 to 8 only, it is called octal
number system. It is
represented as N8.
Decimal to
octal
In case of decimal to octal, we divide the
number by 8 and write the remainders in
the reverse order to get the equivalent
octal number. Decimal Number: All the
numbers to the base ten are called decimal
numbers. These are the commonly used
numbers, which are 0-9. It has both
integer part and the decimal part.
Octal to
Binary
However, there is a simple direct method
to convert an octal number to binary
number. Since there are only 8 symbols
(i.e., 0, 1, 2, 3, 4, 5, 6, and 7) in
octal representation system and its base
(i.e., 8) is equivalent of 23=8. ...
Convert each digit of octal into binary.
That will be output as binary number
Octal to
decimal
The octal numeral system, or oct for
short, is the base-8 number system,
and uses the digits 0 to 7, that is
to say 10 represents 8 in decimal and
100 represents 64 in decimal
Binary to
octal
Take the given binary number.
Multiply each digit by 2n-1 where n
is the position of the digit from the
decimal. The resultant is the
equivalent decimal number for the
given binary number. Divide the
decimal number by 8. Note the
remainder.
Hexadecimal
Converation
The hexadecimal number system is a
type of number system, that has a
base
value equal to 16. It is also pronounced
sometimes as 'hex'. Hexadecimal numbers
are represented by only 16 symbols. These
symbols or values are 0, 1, 2, 3, 4, 5,
6, 7, 8, 9, A, B, C, D, E and F.
Decimal to
hexadecima
l
Decimal to hexadecimal (D2X) is a
conversion process involving the two
aforementioned number systems. ... The
conversion can be done by dividing
the decimal value by 16, which is the
base value of hexadecimal, taking
note of the remainder, and then
dividing the result with 16 again and
taking note of the remainder.
Hexadecimal to
binary
Hexadecimal to binary (X2B) is a
conversion process involving the two
aforementioned number systems. ... In
other words, it is about finding the
correct combination from binary
place values of 8, 4, 2, 1 that
equals the decimal representation of
the hex value. For example the hex
value A or
10 in decimal is 1010.
Binary to hexadecimal is a form of conversion where a
binary
number with the base of 2 is converted to a hexadecimal
number with the base of 16. Binary numbers only have 2
numbers or bits i.e. 0 and 1. While hexadecimal numbers
deal with numbers and alphabets, 0 - 9 and A - F (10 -
15).
Binary to Hexadecimal
THANKS!!!