What is a bit? (2)
What is a byte?
A sequence of 8 bits.
What is a word? (2)
How many bits are there in a word?
It is usually 32 or 64 bit.
What is the binary number system?
What is hexadecimal? (2)
How can hexadecimal be used as shorthand?
The binary number can be split into groups containing 4 digits/bits and represented by a number.
What are the advantages of using
hexadecimal?
Fewer errors will occur as it is easy to read a large binary number.
What are character sets?
A list of characters alongside corresponding binary codes.
How do character sets work?
When a computer stores text, it stores a sequence of binary codes, and two computers that use the same character set can communicate with one another.
Give 2 character sets.
How does ASCII store characters?
It stores characters that can be found on standard UK keyboards using 7bits per character.
How does Unicode store characters?
It stores a huge range of characters from many languages, as well as emoticons and other symbols, using 16 bits per character.
Give an advantage for ASCII.
Very little storage space required per character.
Give a disadvantage for ASCII.
Limited to using western characters only.
Give 2 advantages for Unicode.
Give a disadvantage for Unicode.
Requires more than double the storage space per character of ASCII.
What is a primitive data type? (2)
What is a variable?
A named space in memory that can contain one piece of data of a specified data type.
State 5 data types.
What is a Boolean?
Can only be True or False.
What are the storage requirements of a Boolean?
1 bit
What is a Character?
Stores content of a single keystroke.
What are the storage requirements of a
Character? (2)