What is Binary?
The numbers in the Base 2 system, represents numbers with 2 values , zeroes and ones.
What is a Bit?
The short form of a binary digit . it is the smallest unit of information in a computer.
What is a Byte?
Standard form of information in a computer. A collection of 8 adjacent bits. Can be represented as 2**8 = 256 distinct values.
What is a Nibble?
A collection of 4 adjacent bits or half a byte.
What is an unsigned integer?
An integer with a value what is 0 or more. An integer with no sign before it .
What is a signed integer?
Can be either negative or positive depending on its sign . Typically half are non negative and the other negative .
What is an over flow error?
Typically when the result of the calculation exceeds the available amount of bits what is allocated to the result of the calculation .
What is a logical shift ?
used on unsigned binary integers and is a binary shift where the cleared positions are filled with 0s.
What is the most significant bit ?
The leftmost bit of a binary number what has the largest place value.
The least significant bit?
The right most bit of a binary number what has the least largest place value .
What is Integer Division?
When applying a logical shift right you might encounter a decimal place so intiger division keeps the integer part of the result and discards the remainder/decimal..