answersLogoWhite

0


Best Answer

Binary is not actually a code, but a different way of recording numbers. It actually works exactly the same way as our usual decimal notation, but with one key difference.

First, consider the number 275. When we look at that number there are three digits, which we normally refer to as the ones column, the tens column, and the hundreds column. We call them these names because the digits don't actually represent their own value, but a multiple of it. We can also express that number as:

200 + 70 + 5

or:

2×100 + 7×10 + 5×1

Which is the same as saying:

2×102 + 7×101 + 5×100

In other words, each column in a number does not actually represent the value of that digit shown, but that value multiplied by ten to the power of the column number, with the columns numbered zero and up going from right to left. For instance, the number 8675309 can be expanded as:

8×106 + 6×105 + 7×104 + 5×103 + 3×102 + 0×101 + 9×100

This is why we refer to it as base ten notation.

Binary, or base two notation, works exactly the same way, but with one difference. Instead of having ten unique digits (0-9), we only have two of them (0-1). This means that instead of using powers of ten for our columns, we use powers of two. Instead of having columns of ones, tens, hundreds, etc. we have ones, twos, fours, eights, and so on.

Going back to our original example number then, 275, it would be expressed in binary as:

100010011

To convert that number back to decimal, all you need to do is add up the powers of two that correspond with the digits that have a value of one. In this case, we have:

1×28 + 0×27 + 0×26 + 0×25 + 1×24 + 0×23 + 0×22 + 1×21 + 1×20

= 28 + 24 + 21 + 20

= 256 + 16 + 2 + 1

= 275

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How can you interpret binary code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a command interpretation?

The CPU needs to understand a command keyed in by a user. The CPU can interpret only binary code, i.e. the code containing 0's and 1's. A command keyed in by user has to be translated to binary code for the CPU to understand it. An operating system performs this task.


What is the binary code for 01001011?

That IS the binary code.


How do you convert exe to binary?

An exe is machine code and machine code is written entirely in binary. No conversion is necessary. A hex-editor is the simplest way to view the binary code. The code will be shown in hexadecimal rather than binary, however this actually makes it much easier for humans to interpret the binary code because the conversion from hex to binary is so simple. Each hex digit represents a unique 4-bit binary pattern: 0x0 = 0000 0x1 = 0001 0x2 = 0010 0x3 = 0011 0x4 = 0100 0x5 = 0101 0x6 = 0110 0x7 = 0111 0x8 = 1000 0x9 = 1001 0xA = 1010 0xB = 1011 0xC = 1100 0xD = 1101 0xE= 1110 0xF = 1111 Thus the hex value 0x9A translates directly to the 8-bit binary value 10011010. That is, 8 binary digits reduce to just 2 hex digits and therefore makes it much easier for humans to interpret the binary value.


What is -33 in binary code?

00100001 is the binary code for 33


What is the binary code for 53?

00110101 is the binary code for 53


Who discovered binary code?

Jamesgates discovered binary code instringtheory


How do you convert binary code to text code and text to binary?

You can are ASCII-tabellen. For converting binary to text


When was The Binary Code - band - created?

The Binary Code - band - was created in 2004.


What is the vhdl code for binary to hex convertion?

vhdl code for binary to Hexadecimal ?


What is sixteen in the Binary code system?

Sixteen in the Binary code system is (1000)2


What is the decimal binary code for 30?

Decimal 30 = binary 11110. The decimal binary code (BCD), however, is 11 0000.


What is Binary code for eighteen?

18 in binary is 10010