What data type should be used for storing a phone number like 07886756443?
String
Numeric types would omit the leading 0.
Which data type stores a collection of characters?
String
Which data type stores just True and False?
Boolean
What is the effect of a logical shift left by one place?
Multiplication by 2
What is a character set?
A character set is a published collection of codes and corresponding characters which can be used by computers for representing text.
What is ASCII?
ASCII uses 7 bits to represent 2^7 = 128 different characters.
What is Unicode, and why is it better than ASCII?
Unicode uses a varying number of bits allowing for over 1 million different characters, many of which have yet to be allocated. Because of this, Unicode has enough capacity to represent a wealth of different languages, symbols and emoji.