Unit 01 - Information Representation Flashcards
CAMBRIDGE INTERNATIONAL A-LEVEL COMPUTER SCIENCE 9618
Hexadecimal
A number system that uses 16 distinct symbols (the numbers 0-9 and the letters A-F) to represent a number. Also called hex or base-16.
Denary
Decimal numbers written with the symbols 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.
Bit
A digit in the binary number system written using either of the symbols 0 and 1. Bit is short for binary digit.
Byte
A group of eight bits treated as a single unit. 0000 0000
Nibble
A group of four bits 0000
Decimal prefix
A prefix to define the magnitude of a value. Examples are kilo, mega, giga and tera. They represent factors of 10^3, 10^6, 10^9 and 10^12 respectively.
Binary prefix
A prefix to define the magnitude of a value. Examples are kibi, mebi, gibi and tebi. They represent factors of 2^3, 2^6, 2^9 and 2^12 respectively.
One’s Complement
The binary number obtained by subtracting each digit in a binary number from 1.
Two’s Complement
A method of representing signed (i.e. negative and positive) numbers where the most significant bit has a negative place value.
Overflow
A condition when the result of a calculation is too large to fit into the number of bits defined for storage.
Binary coded decimal (BCD)
Storage of a binary value representing one denary digit in a nibble (4 bits)
Packed BCD
When two BCD (binary coded decimal) nibbles are stored in one byte
ASCII
American Standard Code for Information Interchange. An encoding format that allocates a numeric code to characters (e.g. digits, letters, punctuation marks, etc.) in order for them to be represented in binary within a computer system
Unicode
An encoding format that allocates a numeric code to characters in order for them to be represented in binary within a computer. Unicode covers the characters for the most known alphabets and special symbols (e.g. mathematical operators, geometric shapes, arrows, emojis, etc.)
Bitmapped graphic
A type of digital image that is stored as pixels. Each pixel is represented by a single colour code. Also called bitmapped image.