Term | Definition | Example | |||
---|---|---|---|---|---|
Binary Number | A number expressed in the base-2 numeral system, which uses only two numbers, 0 and 1. | ||||
Most Signficant Bit MSB | The leftmost bit in a binary number. | ||||
Least Significant Bit LSB | The rightmost bit in a binary number. | ||||
Binary to Decimal Conversion | For a binary number | Convert
| |||
Binary to Octal Conversion | Start from the rightmost binary digit and group them into sets of three. If there are not enough digits in the leftmost group, pad with zeros. Convert each group to decimal and map to each corresponding octal digit. | Convert
So, | |||
Binary to Hexadecimal Conversion | Start from the rightmost binary digit and group them into sets of four. If there are not enough digits in the leftmost group, pad with zeros. Convert each group of 4 to decimal and then map the result to the corresponding hexadecimal digit. | Convert
|
Term | Definition | Examples | |||||
---|---|---|---|---|---|---|---|
Octal | A base-8 numeral system. It uses the digits 0 through 7 to represent numbers. | ||||||
Octal to Binary Conversion | CalculatorOctal to Binary Calculator | Begin by converting the octal number into its decimal form, then follow the rules for converting from decimal to binary. | Convert 1. Convert each octal digit to its 3-digit binary representation: | ||||
Octal to Hexadecimal Conversion | Begin by converting the octal number into its decimal form, then follow the rules for converting from decimal to hexadecimal. | Convert
| |||||
Octal to Decimal Conversion | For an octal number | Convert |
Term | Definition | Examples | |||
---|---|---|---|---|---|
Decimal | A number expressed in a base 10 numeral system which uses digits 1-9. We usually use decimal numbers in our day-to-day lives. | ||||
Decimal to Octal Conversion | Divide the original number by largest power of 8 possible, then divide the resulting remainder by a smaller power of 8. Repeat this process until the largest power possible is 0, taking each successive quotient as one octal digit, starting from the left. | Convert | |||
Decimal to Hexadecimal Conversion | Repeatedly divide the decimal number by 16, noting the remainders as hexadecimal digits from right to left, until the quotient is zero. | Convert | |||
Decimal to Binary Conversion | Continuously divide by 2 until arriving at a quotient of 1. The remainder after each division (including the final quotient) represents one binary digit, starting from the left. | Convert |
Term | Definition | Examples | |||
---|---|---|---|---|---|
Hexadecimal | Hexadecimal is a base-16 numeral system. It uses the digits 0 through 9 and the letters A through F (corresponding to 10-16) to represent numbers. | ||||
Hexadecimal to Binary Conversion | Substitute each hex digit with its 4-digit binary representation. | ||||
Hexadecimal to Octal Conversion | Convert the hexadecimal number to binary, then group the binary digits into groups of three starting from the right. Then, map each group of three to its octal equivalent. |
| |||
Hexadecimal to Decimal Conversion | For an octal number | Convert |
Term | Definition | ||
---|---|---|---|
Floating Point Number | A numerical representation that approximates a real number and allows representation of a wide range of values, including both integers and fractions. | ||
IEEE-754 | A widely used format for representing floating-point numbers in computers. It defines formats for representing single-precision (32-bit) and double-precision (64-bit) floating-point numbers. | ||
Significand Mantissa | The fractional portion of a floating-point number; the portion of a floating point number after the decimal point. | ||
Exponent Characteristic | The power of the base by which the mantissa is multiplied. | ||
Sign Bit | A bit used to represent whether a floating point number is positive or negative. |
Term | Definition | Formula | |||
---|---|---|---|---|---|
De Morgan's Law | The first law states that the negation of the logical OR of two propositions is equivalent to the logical AND of their negations. The second law states that the negation of the logical AND of two propositions is equivalent to the logical OR of their negations. | | |||
Karnaugh Map K-Map | A graphical representation of a truth table used to simplify Boolean algebraic expressions. | ||||
Sum of Products SOP | Expresses a logic function as the logical OR (sum) of multiple logical AND (products) terms. | ||||
Product of Sums POS | Expresses a logic function as the logical AND (product) of multiple logical OR (sums) terms. | ||||
Identity Law | States that a Boolean variable ANDed with | | |||
Indempotent law | States that a Boolean variable ORed with itself is equal to the variable itself, and a Boolean variable ANDed with itself is equal to the variable itself. | | |||
Domination Law | States that a Boolean variable ORed with true | | |||
Null Law | States that | | |||
Commutative Law | States that a Boolean variable ORed with itself is equal to the variable itself, and a Boolean variable ANDed with itself is equal to the variable itself. | | |||
Associative Law | States that grouping of Boolean variables in a series of OR or AND operations does not affect the result. | | |||
Distributive Law | Describes how to expand expressions involving both OR and AND operations by distributing one operation over the other. | | |||
Absorption Law | States that combining a Boolean variable with its conjunction or disjunction with another variable results in the original variable. | |
Term | Definition | Truth Table | |||
---|---|---|---|---|---|
NOT | Takes a single input and produces the opposite output. If the input is 0, the output is 1, and vice versa. | ||||
OR | Takes two or more inputs and produces an output that is 1 if at least one of the inputs is 1. It returns 0 only if all inputs are 0. | ||||
AND | Takes two or more inputs and produces an output that is 1 only if all inputs are 1. It returns 0 if any input is 0. | ||||
XOR | Takes two or more inputs and produces an output that is 1 if exactly one of the inputs is 1. It returns 0 if both inputs are the same. | ||||
NOR | The complement of the OR gate. It takes two or more inputs and produces an output that is 1 only if all inputs are 0. It returns 1 if any input is 0. | ||||
XNOR | The complement of the XOR gate. It takes two inputs and produces an output that is 1 if both inputs are the same (both 0 or both 1). It returns 0 if the inputs are different. | ||||
NAND | The complement of the AND gate. It takes two or more inputs and produces an output that is 0 only if all inputs are 1. It returns 1 if any input is 0. |
Term | Definition | ||
---|---|---|---|
One's Complement | A method for representing signed binary numbers where the negative of a binary number is obtained by flipping all the bits in its binary representation. | ||
Two's Complement | A method for representing signed binary numbers where the negative of a binary number is obtained by taking the one's complement of the number and then adding 1 to the result. This representation has the advantage that there is only one representation for zero and that addition and subtraction can be performed using the same hardware. | ||
Excess Notation | A method for representing signed integers where a bias value is added to the unsigned representation of a number to obtain its signed representation. | ||
Signed Magnitude | A method for representing signed integers where the MSB is used to represent the sign. A value of |
AI Study Tools for STEM Students Worldwide.
© 2025 CompSciLib™, LLC. All rights reserved.
info@compscilib.comContact Us