answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

2010-10-07 20:40:04
This answer is:
User Avatar
Study guides

What is a programming language

What does DOS stand for

What is a software that is distributed for free

What do unix and Linux have in common

➡️
See all cards
3.91
54 Reviews

Add your answer:

Earn +20 pts
Q: What is the larest binary number a nibble can hold?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is a binary tree?

A binary tree is a data structure consisting of binary nodes. A binary node is a data structure with two branches, each of which may hold a reference to another binary node. These branches are known as the left and right branches respectively. Since the nodes maintain references to every other node in the tree, it is only necessary to keep track of the root node.


Why is it easier to convert numbers from binary to hexadecimal than decimal to hexadecimal?

Each hexadecimal digit can hold one of 16 values (0-F); 16 = 2^4, so exactly 4 bits (binary digits) can hold the same value as 1 hexadecimal digit. As a result the conversion from binary to hexadecimal is simply a matter of grouping the bits together in blocks of 4 (making nybbles) and converting each block into a single hexadecimal digit. Similarly for binary to octal but in this case as 8 = 2³ the bits are group into blocks of 3 which are then converted into octal digits. However, converting decimal to hexadecimal is not so "easy" as each decimal digit does not map to an exact number of binary digits. The only exception would be when using BCD (Binary Coded Decimal) where only the bit patterns for the decimal digits 0-9 are used in every 4 bits (wasting 6 possible digits) and where 0000 1001 (09) + 0000 0001 (01) = 0001 0000 (10). In this case the hexadecimal representation of the BCD is exactly the same as the decimal, but I have never seen it used as such (beyond the binary representation).


What if -1 is assigned to a unsigned variable in C plus plus?

If you assign -1 to a unsigned variable it will contain the biggest number its able to hold. For example if you assign -1 to a unsigned int it will be 4294967295 as its the biggest number a unsigned int can hold.


Why ASCII has only 255 codes?

Answer to Why ASCII has only 255 codesAs you know the alphabet has 26 letters. If you include capital letter that would be 52. There is also lots of punctuation, digits we end up with 127. But there is other function buttons (example. Ctrl + Alt + Del) we need to get more space. If we use 7 binary digits (Computers counting systems is binary) we end up with 127. That isn't enough to hold all the characters. So we make it 8 binary digits. The maximum number for 8 binary digits is 11111111. Which in our counting system is 255.AnswerASCII is a 7-bit character encoding, so it has only 128 codes: 0 through 127. The upper 128 codes in an 8-bit byte (128 through 255) are unused and undefined by ASCII, but many ASCII extensions (such us ISO-8859-1) make use of those unused codes.


What are structures in c?

Structures in C are user defined data types. They can hold a number of values but all must be of the same type.

Related questions

In what form numbers are stored in computers binary or ASCII form?

Its all in binary really. As each binary number refers to the pixel it will hold to form the shape after.


What can a Byte hold?

1 byte may be able to hold just 1 number of the binary code chain (I.E. 1001111001010100011010)


When a fixed precision binary number is used to hold only positive values is said to be?

Unsigned.


Does the number 255 hold any special significance to computer coders?

Yes - it's the largest number that can be represented in Binary code with 8 bits


When a fixed precision binary number is used to hold only positive values it is said to be?

It is most commonly called an unsigned integer, but some programming languages have other terms for it.


What is the chip that is able to hold a binary state without the need for recharging?

Static RAM


What should you use to hold the mousetrap car?

I had mouses at my home, they nibble your clothes into shreds. Then a pest control was arranged. It made things better.


Why do programmers use hexadecimal instead of binar?

This is because a number represented in hexadecimal requires fewer digits. A hexadecimal string of length s can hold a number which is approx 8^s as large as a binary string of the same length.


What is 10001110101 in binary code mean?

Actually, that answer is incorrect. Binary is used to hold information. However, without a context, the information can only be translated as a number. There are two types of binary integers (ironic, right?). The first type is called unsigned. The second type is called signed. If you have an unsigned binary integer, the number can only be positive. If you have a signed binary integer, the first number indicates the sign of the number (and ONLY the sign. A position cannot mean both a value AND positive or negative). A '0' in front means positive, and a '1' in front means negative. So, if the number in question was an unsigned integer, it would have a value of 1024 + 64 + 32 + 16 + 4 + 1 = 1141. If the number in question was a signed integer, it would have a value of (-1)*(64 + 32 + 16 + 4 + 1) = -117.


What is the minimum amount of data a computer can hold?

Theoretically, the smallest amount of data a binary computer can hold is one bit (an eighth of a byte. it can only hold two states: 1 or 0.)


What is a binary tree?

A binary tree is a data structure consisting of binary nodes. A binary node is a data structure with two branches, each of which may hold a reference to another binary node. These branches are known as the left and right branches respectively. Since the nodes maintain references to every other node in the tree, it is only necessary to keep track of the root node.


What are counters and registors in electronics?

In digital logic and computing, a counter is a device which stores (and sometimes displays) the number of times a particular event or process has occurred, often in relationship to a clock signal.A register is a device that can hold a binary number or series of bits-just store it-.

People also asked