I'm assuming the question here is asking how to convert the decimal number 10 to binary.
First, we need to find the largest power of 2 that will go into 10. 24, or 16, is too large, so we'll go with 23, or 8. The difference between 8 and 10 is 2, which is just 21.
So, we can see that 10 can be represented as 23 + 21, which in binary is 1010, because you put a 1 in the 2's place and a 1 in the 8's place.
This is how you count to 10 in binary:
0001 (20)
0010 (21)
0011 (21+20)
0100 (22)
0101 (22+20)
0110 (22+21)
1000 (23)
1001 (23+20)
1010 (23+21)
Transmission Media
Binary is the most primitive form of numeric notation and is by far the easiest to implement at the machine level.
NOTE: The program below is written in the form of a straight forwards 'table/look up' chart. It will, quite simply, convert no more than 1 single hex digit character, at a time, into its binary number equivalent. If you wish to convert a whole entire string of hex digit characters together at once; then, I suggest you will need to 'modify' the program yourself by using, possibly, a 'FOR/NEXT loop' statement to extract out each separate hex character which needs to be converted from the users input/together with a function such as, 'MID$()'. ==== Here is a sample program RUN/Output... Please, enter your single character hex digit(0-9/A-F): ? C The binary equivalent of the above hex digit is: 1100
Let's look at an example. If you want to convert the number 100112 to decimal you can split up the number so each digit has an index associated to it: 4 3 2 1 0 1 0 0 1 1 We can then find the decimal value: 24 * 1 + 23 * 0 + 22 * 0 + 21 * 1 + 20 * 1 = 16 * 1 + 8 * 0 + 4 * 0 + 2 * 1 + 1 * 1 = 16 + 0 + 0 + 2 + 1 = 19 So what we need to do is to multiply each of the binary digits by the value of two raised to the index of the digit. This will give you the conversion from any binary number to a decimal number.
First let's write it as a sum of powers of two. This will make it easier to write as a binary number. 19=16+2+1 This can be written: 19=16*1+8*0+4*0+2*1+1*1 So the binary form is: 10011
If 1101 is a decimal number, then its binary equivalent is 10001001101. If 1101 is a binary number, then its decimal equivalent is 13.
Binary 1101 = D
The binary number 11011001 relates in decimal to the number 221.
1101
1110 0101 1101 1011 is E5DB
its easy to convert a given binary number into haxadecimal form.
111 = 1101111
The answer depends on what form you wish to convert binary and hex 2011 to.
The number ten (10 in decimal format) is 1010 in binary form. The binary number 10 is 2 in decimal form.
11 in binary form: 1011 11 is binary form of 3
The binary number 11101100 = 236
1. represent every individual digit of given hexadecimal in binary form like this 4---------> 0100 8---------> 1000 7---------> 0111 2. combine the individual binary digits in order to get the binary of given hexadecimal number 487 ------------> 0100 1000 0111 ( required binary number )