Cara baca binary
What's the difference between MSB and LSB? MSB/ LSB - https://en-support.renesas.com/knowledgeBase/16978449
Binary to Decimal Conversion - https://www.electronics-tutorials.ws/binary/bin_2.html
How to Read Binary Code - https://www.lifewire.com/how-to-read-binary-4692830
Learn How to Read Binary in 5 minutes - https://medium.com/@LindaVivah/learn-how-to-read-binary-in-5-minutes-dac1feb991e
Method for Hex to Binary Conversion
This conversion can be done by finding the binary equivalent for an each digit of the hexadecimal number, combining them together in the same order. The below steps may useful to learn and practice how to perform hex to binary conversion.
step 1: Separate the digits of the given hexadecimal, if more than 1 digit.
step 2: Find the equivalent binary number for each digit of hex number, add 0's to the left if any of the binary equivalent is shorter than 4 bits.
step 4: Write the all groups binary numbers together, maintaining the same group order provides the equivalent binary for the given hexadecimal.
Solved Example Problem
The below solved example problem may useful to understand how to perform hex to binary number conversion.
Problem
Convert the hexadecimal 9DB.A516 to its binary equivalent.
Decimal, Binary, Octal & Hex - Conversion Table
The below is the conversion table for Decimal, Binary, Octal & Hex number systems.
Decimal | Binary | Octal | Hex |
---|---|---|---|
0 | 0000 | 0 | 0 |
1 | 0001 | 1 | 1 |
2 | 0010 | 2 | 2 |
3 | 0011 | 3 | 3 |
4 | 0100 | 4 | 4 |
5 | 0101 | 5 | 5 |
6 | 0110 | 6 | 6 |
7 | 0111 | 7 | 7 |
8 | 1000 | 10 | 8 |
9 | 1001 | 11 | 9 |
10 | 1010 | 12 | A |
11 | 1011 | 13 | B |
12 | 1100 | 14 | C |
13 | 1101 | 15 | D |
14 | 1110 | 16 | E |
15 | 1111 | 17 | F |
Ulasan