Nibble in the context of Code page 866


Nibble in the context of Code page 866

Nibble Study page number 1 of 1

Play TriviaQuestions Online!

or

Skip to study material about Nibble in the context of "Code page 866"


⭐ Core Definition: Nibble

In computing, a nibble, also spelled nybble to match byte, is a unit of information that is an aggregation of four-bits; half of a byte/octet. The unit is alternatively called nyble, nybl, half-byte or tetrade. In networking or telecommunications, the unit is often called a semi-octet, quadbit, or quartet.

As a nibble can represent sixteen (2) possible values, a nibble value is often shown as a hexadecimal digit (hex digit). A byte is two nibbles, and therefore, a value can be shown as two hex digits.

↓ Menu
HINT:

In this Dossier

Nibble in the context of Hexadecimal

Hexadecimal (hex for short) is a positional numeral system for representing a numeric value as base 16. For the most common convention, a digit is represented as "0" to "9" like for decimal and as a letter of the alphabet from "A" to "F" (either upper or lower case) for the digits with decimal value 10 to 15.

As typical computer hardware is binary in nature and that hex is power of 2, the hex representation is often used in computing as a dense representation of binary information. A hex digit represents 4 contiguous bits –known as a nibble. An 8-bit byte is two hex digits, such as 2C.

View the full Wikipedia page for Hexadecimal
↑ Return to Menu

Nibble in the context of Mask (computing)

In computer science, a mask or bitmask is data that is used for bitwise operations, particularly in a bit field. Using a mask, multiple bits in a byte, nibble, word, etc. can be set either on or off, or inverted from on to off (or vice versa) in a single bitwise operation. An additional use of masking involves predication in vector processing, where the bitmask is used to select which element operations in the vector are to be executed (mask bit is enabled) and which are not (mask bit is clear).

View the full Wikipedia page for Mask (computing)
↑ Return to Menu