Gr 10 4.1 – DATA AS THE COMPUTER SEES IT Flashcards
ASCII
ASCII (American Standard Code for Information Interchange)
is a coding system which is limited to 256 different
characters.
Binary
The base 2 number system that consists of just two digits,
namely a 0 and a 1.
Bit
A binary digit i.e. a 0 or a 1
Byte
A collection of 8bits – the smallest unit of storage in a
computer system.
Coding Scheme
Schemes used to represent or store text or characters by
giving each character a unique numerical code.
Decimal
The base 10 number system that consists of the digits 0, 1, 2,
3, 4, 5, 6, 7, 8 and 9.
Hexadecimal
The base 16 number system that consists of the digits 0, 1, 2,
3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F.
Octal
The base 8 number system that consists of the digits 0, 1, 2,
3, 4, 5, 6 and 7.
Overflow
An error condition that occurs when there are not enough
bits available to represent an integer value accurately.
Primitive data type
The core types of a programming language. Variables are
declared and used to store a particular type of data.
Truncation
The misrepresentation of a string variable because there are
not enough bytes available to store all the characters in the
string.