Digital Data Flashcards
what is ASCII Code (7-bit)
original 7-bit ASCII code table used 7 bits to rep text and 128 character in table
what is extended ASCII Code (8-bit)
8-bit table contains 256 characters and makes use of the 8th bit in a byte.
What is unicode
Character encoding standard created to solve problem of limitations of ASCII.
Characters are called code points
What is hexadecimal
numbering system uses the base 16.
hex values expressed as digits 0-9 and letters A-F giving sixteen possibilities
How can you use hexadecimal
simplify long binary paterns
How to convert binary pattern to hexadecimal
- Split binary pattern into 4-bit groups
- Establish denary value for each group
- Convert from denary to hexadecimal
What is One’s complement
can be used to represent a binary number; when using one’s complement, each bit is inverted, so a 1 bit changes to a 0 bit, and each 0 bit is changed to a 1 bit.
What is two’s complement
method of representing signed numbers in a computer system.