Computer Architecture and Design Question:
Download Job Interview Questions and Answers PDF
Convert 65(Hex) to Binary?
Answers:
Answer #165 to decimal
65/16=4
remainder=1
==41 decimal
decimal to binary
101001
65/16=4
remainder=1
==41 decimal
decimal to binary
101001
Answer #265Hex= 101 decimal = 1100101 binary
Answer #3A hex digit can range from 0-A (0-15 in decimal). Thus each hex digit requires 4 bits.
6(Hex)=6(Dec)=0110
5(Hex)=5(Dec)=0101
Therefore 65(Hex)=01100101
6(Hex)=6(Dec)=0110
5(Hex)=5(Dec)=0101
Therefore 65(Hex)=01100101
Answer #4A hex digit can range from 0-F (0-15 in decimal). Since 15(Dec)=1111(Bin), each hex digit requires 4 bits.
6(Hex)=6(Dec)=0110
5(Hex)=5(Dec)=0101
Therefore 65(Hex)=01100101
6(Hex)=6(Dec)=0110
5(Hex)=5(Dec)=0101
Therefore 65(Hex)=01100101
Answer #55 => 0101
6 => 0110
we can directly convert each digit individually.
so 65 => 01100101
6 => 0110
we can directly convert each digit individually.
so 65 => 01100101
Answer #6Each digit in hex can represent up to 4 binary bits (nibble).
So, a hex number with multiple digits can be converted into its binary equivalent by converting each hex digit to its binary equivalent and concatenating the bits in the same order as the digits in the hex number appear.
6 hex = 0110 in binary
5 hex = 0101 in binary
Hence:
65 hex in binary is
= \\"0110\\" concatenated with \\"0101\\"
= 0110_0101
= \\"01100101\\"
= 1100101 (removing leading zeroes)
So, a hex number with multiple digits can be converted into its binary equivalent by converting each hex digit to its binary equivalent and concatenating the bits in the same order as the digits in the hex number appear.
6 hex = 0110 in binary
5 hex = 0101 in binary
Hence:
65 hex in binary is
= \\"0110\\" concatenated with \\"0101\\"
= 0110_0101
= \\"01100101\\"
= 1100101 (removing leading zeroes)
Answer #70x65
0x60 + 0x05
0110 0000 + 0000 0101
0110 0101
41 decimal is
0010 1001
0x29
0x60 + 0x05
0110 0000 + 0000 0101
0110 0101
41 decimal is
0010 1001
0x29
Answer #8Shortcut:
One hex digit is 4 bit binary.
And you can directly concatenate the binary representation of each digit in the hex to get bin representation.
So.. 5 ==> 0101 && 6 ==>0110
hence 65 ==> 01100101
One hex digit is 4 bit binary.
And you can directly concatenate the binary representation of each digit in the hex to get bin representation.
So.. 5 ==> 0101 && 6 ==>0110
hence 65 ==> 01100101
Answer #965 hex is 0110 (6) 0101 (5) == 1100101
65 hex = 101 decimal
65 hex = 101 decimal
Answer #100x65 = 0110 0101
0x6 0x5
0x6 0x5
Answer #116(Hex) = 0110
5(Hex) = 0101
65(Hex) = 0110 0101
5(Hex) = 0101
65(Hex) = 0110 0101
Answer #1201101010
Answer #1301100101
Download Computer Architecture Interview Questions And Answers
PDF
Previous Question | Next Question |
What is a cache? | Convert a number to its twos compliment and back? |