BINARY TO DECIMAL:
INPUT:(01010101)2
sol:
128 64 32 16 8 4 2 1
0 1 0 1 0 1 0 1
ANSWER IS:(85)10
DECIMAL TO BINARY:
INPUT:(150)10
sol:
128 64 32 16 8 4 2 1
1 0 0 1 0 1 1 0
ANSWER IS:(10010110)2
BINARY TO OCTAL:
INPUT:(01010101)2
sol:
we have split into three digit(start from LSB)
01 | 010 | 101
1 2 5
ANSWER IS:(125)8
OCTAL TO BINARY:
INPUT:(76)2
7 6
111 110
ANSWER IS:(111110)2
BINARY TO HEXADECIMAL:
INPUT:(01010101)2
we have split into four digit(start from LSB)
0101 0101
5 5
ANSWER IS:(55)16
HEXADECIMAL TO BINARY:
INPUT:(FF)16
F F 1111 1111
ANSWER IS:(11111111)2
DEICMAL TO HEXADECIMAL:
INPUT:(76)2
first decimal number into binary number and then converted binary to hexadecimal number.
binary conversation:
128 64 32 16 8 4 2 1
0 1 0 0 1 1 0 0
hexadecimal conversation:
0100 1100
4 C
ANSWER IS:(4C)16
OCTAL TO DECIMAL:
INPUT:(25)8
first octal number into binary number and then converted binary to decimal number.
binary conversation:
2 5
010 101
decimal conversation:
128 64 32 16 8 4 2 1
0 0 0 1 0 1 0 1
ANSWER IS:(21)10
FOR MORE DETAILS CLICK HERE
INPUT:(01010101)2
sol:
128 64 32 16 8 4 2 1
0 1 0 1 0 1 0 1
ANSWER IS:(85)10
DECIMAL TO BINARY:
INPUT:(150)10
sol:
128 64 32 16 8 4 2 1
1 0 0 1 0 1 1 0
ANSWER IS:(10010110)2
BINARY TO OCTAL:
INPUT:(01010101)2
sol:
we have split into three digit(start from LSB)
01 | 010 | 101
1 2 5
ANSWER IS:(125)8
OCTAL TO BINARY:
INPUT:(76)2
7 6
111 110
ANSWER IS:(111110)2
BINARY TO HEXADECIMAL:
INPUT:(01010101)2
we have split into four digit(start from LSB)
0101 0101
5 5
ANSWER IS:(55)16
HEXADECIMAL TO BINARY:
INPUT:(FF)16
F F 1111 1111
ANSWER IS:(11111111)2
DEICMAL TO HEXADECIMAL:
INPUT:(76)2
first decimal number into binary number and then converted binary to hexadecimal number.
binary conversation:
128 64 32 16 8 4 2 1
0 1 0 0 1 1 0 0
hexadecimal conversation:
0100 1100
4 C
ANSWER IS:(4C)16
OCTAL TO DECIMAL:
INPUT:(25)8
first octal number into binary number and then converted binary to decimal number.
binary conversation:
2 5
010 101
decimal conversation:
128 64 32 16 8 4 2 1
0 0 0 1 0 1 0 1
ANSWER IS:(21)10
FOR MORE DETAILS CLICK HERE
No comments:
Post a Comment