Computer-Science-A-level-Ocr
-
3-3-networks8 主题
-
3-2-databases7 主题
-
3-1-compression-encryption-and-hashing4 主题
-
2-5-object-oriented-languages7 主题
-
2-4-types-of-programming-language4 主题
-
2-3-software-development5 主题
-
2-2-applications-generation6 主题
-
2-1-systems-software8 主题
-
1-3-input-output-and-storage2 主题
-
1-2-types-of-processor3 主题
-
1-1-structure-and-function-of-the-processor1 主题
-
structuring-your-responses3 主题
-
the-exam-papers2 主题
-
8-2-algorithms-for-the-main-data-structures4 主题
-
8-1-algorithms10 主题
-
7-2-computational-methods11 主题
-
7-1-programming-techniques14 主题
-
capturing-selecting-managing-and-exchanging-data
-
entity-relationship-diagrams
-
data-normalisation
-
relational-databases
-
hashing
-
symmetric-vs-asymmetric-encryption
-
run-length-encoding-and-dictionary-coding
-
lossy-and-lossless-compression
-
polymorphism-oop
-
encapsulation-oop
-
inheritance-oop
-
attributes-oop
-
methods-oop
-
objects-oop
-
capturing-selecting-managing-and-exchanging-data
-
6-5-thinking-concurrently2 主题
-
6-4-thinking-logically2 主题
-
6-3-thinking-procedurally3 主题
-
6-2-thinking-ahead1 主题
-
6-1-thinking-abstractly3 主题
-
5-2-moral-and-ethical-issues9 主题
-
5-1-computing-related-legislation4 主题
-
4-3-boolean-algebra5 主题
-
4-2-data-structures10 主题
-
4-1-data-types9 主题
-
3-4-web-technologies16 主题
-
environmental-effects
-
automated-decision-making
-
computers-in-the-workforce
-
layout-colour-paradigms-and-character-sets
-
piracy-and-offensive-communications
-
analysing-personal-information
-
monitoring-behaviour
-
censorship-and-the-internet
-
artificial-intelligence
-
the-regulation-of-investigatory-powers-act-2000
-
the-copyright-design-and-patents-act-1988
-
the-computer-misuse-act-1990
-
the-data-protection-act-1998
-
adder-circuits
-
flip-flop-circuits
-
simplifying-boolean-algebra
-
environmental-effects
character-sets
Character Sets
How are characters represented?
-
Computers only understand binary and therefore we need to represent characters using binary codes
-
For example, the letter ‘A’ might be represented as 01000001 in binary
Character sets
-
A character set is a list of all of the characters and their associated binary code
-
Character sets standardise the binary codes for each character
-
Without a character set, one system might interpret 01000001 differently from another
-
Two common character sets are:
-
American Standard Code for Information Interchange (ASCII)
-
UNICODE
-
ASCII
-
ASCII uses 7-bits to encode each character, providing for 128 distinct characters
-
For example, ‘A’ is represented as 65 in decimal, which is 1000001 in binary
-
ASCII was created to provide a common standard for encoding characters, which was necessary for compatibility among various types of hardware and software
-
An extended version of ASCII exists which encodes each character using 8-bits creating 256 characters
ASCII table
-
The ASCII table shows the relationship between characters that humans recognise and the denary values that represent them in the system
-
The denary values can then be converted to binary, representing the original character as binary

ASCII Table
Limitations of ASCII
1. It has a limited number of characters
ASCII is limited to 128 characters, which include English alphabets, numerals, and some special and control characters.
A, B, C, ..., Z
a, b, c, ..., z
0, 1, ..., 9
!, @, #, ...
2. It is not suitable for multilingual text
ASCII cannot represent characters from languages other than English, limiting its applicability globally.
No representation for: 'α', 'ö', 'ñ',
3. There is no provision for modern symbols
ASCII does not include modern symbols or emoji’s common in today’s digital communication.
Unicode
-
UNICODE was created to be a solution to the limitations of ASCII
-
UNICODE uses a much larger bit range, up to 32-bits (depending on the encoding method), allowing for a wide variety of characters from different languages and scripts
-
Example: The Greek character Lambda ‘λ’ is represented as U+03BB
-
U+03BB breaks down to:
-
U+, meaning this is a Unicode character
-
03BB, meaning character 03BB in the UNICODE set
-
-
Impact on storage
-
ASCII is more storage-efficient, with characters requiring only 7-bits
-
UNICODE characters can require up to 32-bits, thus potentially using more storage space
Comparison
|
|
ASCII |
UNICODE |
|---|---|---|
|
Encoding system |
7-Bits |
16-bits or 32-bits |
|
Number of characters |
128 characters |
65,536 characters (16-bit) |
|
Uses |
Used to represent characters in the English language. |
Used to represent characters across the world. |
|
Benefits |
It uses a lot less storage space than UNICODE. |
It can represent more characters than ASCII. It can support all common characters across the world. It can represent special characters such as emoji’s. |
|
Drawbacks |
It can only represent 128 characters. It cannot store special characters such as emoji’s. |
It uses a lot more storage space than ASCII. |
Responses