answersLogoWhite

0


Best Answer

the largest binary number is 1.84467440737e19. to figure this out you put 2 to the exponent of the certain amount of bits. Eg: 2^64 equals the binary number

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the largest binary number that can be obtained with 64 bits?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

What benefit does the binary digit have over decimal in ters of the internal operation of computer?

Binary is easier for the computer to understand. It is also easier to handle and is not costly.


Why is BCD used in computers?

BCD is used for binary output on devices that only display decimal numbers.


What is 16Mb in binary notation?

16 Mb in binary notation can be refered to as 16*1024 bits. A bit is represented with a lower case "b".


A hazard true or false -Half-adder is a computer circuit capable of adding three binary bits one of which is a CARRY from a previous addition?

It is false. A half adder is a computer circuit capable of adding two binary bits


How do you translate binary to English?

Binary is a form of mathematical notation, not a language. In binary, there are only 2 digits, 0 and 1, called "bits", for "binary digits". It is the prevalent system used in electronics and computers because it matches the most closely how these circuits work, either there is a current (1) or there is not (0). In binary, numbers from 0 to 10 go as: 0, 1, 10, 11, 100, 101, 110, 111, 1000, 1001, 1010. In computers, English letters are represented under 8 bits, forming a byte (group of 8 bits). The first widespread representation was called ASCII and actually used only 7 bits originally. Each number, letter, sign, and some other characters were assigned a code from 1 to 127. For instance, the number 65 was used for the letter "A", 66 for "B", etc. These numeric codes could be represented in decimal values, like 65, or 41 in hexadecimal, or 100 0001 in binary. All correspond to the same number under different notation systems. Most calculator software offer a "scientific" view where you can enter a number in one notation and have it converted into another, if you want to translate binary into decimal.

Related questions

Decimal equivalent of the largest binary integer that can be obtained with 11 bits?

What is the decimal equivalent of the largest binary integer that can be obtained with (a) 11 bits and (b) 25 bits?


2. What is the largest binary number that can be obtained by 16 bits Mention its decimal equivalent.?

It is Bin(1111111111111111) = Dec(65535).


What is the largest decimal equivalent of the binary integer that can obtained with 16 bits?

Your website is useless


What is the decimal equivalent of the largest binary integer that can be obtained with 11 bits?

The largest integer is 211 - 1 which is 2048 - 1 = 2047


What is the decimal equivalent of the largest binary number with 5 places?

To achieve the answer to what the decimal equivalent of the largest binary number with five places (or bits) is, work this equation: The formula is 2_ -1 where n is the number of bits. That will get you where you need to be.


How you can get the largest binary number that can be expressed with 14 bits?

The largest number is 11111111111111 which is 215 - 1. In decimal, that is 32767.


What is the largest binary number that can be expressed with 10 bits?

The largest binary number is 1 1 1 1 1 1 1 1 1 1 . It is equivalent to the decimal number 1,023 .


What is the largest number that can be represented using 5 bits?

31 - it's binary equivalent is 11111


What is the larest binary number a nibble can hold?

A nibble is 4 bits, so the largest unsigned number is 1111, or 15. Also, the largest signed number is 0111, or 7.


What does the decimal number 255 mean in binary?

255 as a decimal number (also known as a base 10 number) = 11111111 in binary (also known as a base 2 number). In binary, each digit is known as a bit, and 8 bits are known as 1 byte. 255 is the largest (positive) number you can make in binary using only 8 bits (1 byte).


What is the largest decimal value that can be represented in binary using two bytes?

11b which is 1*2 + 1*1 = 3 would be for two bits. But a byte is 8 bits, so 2 bytes is 16 bits. The largest binary number is [2^16 - 1], which is 65535 (base ten)


What is the largest 10 bit number?

Assuming you interpret the bits as an unsigned number, that would be 1111111111 in binary, or 1023 (210 - 1) in decimal.