What is a set?
A set is a well-defined collection of objects.
- Objects in the set are members or elements,
- A set is unordered,
- Each member in a set can only occur once,
- A set is usually denoted by a capital letter,
- A member is usually denoted by a lower case letter.
- A set can be defined by listing every member,
- A set can be defined by stating the properties held by the members, but not by the non-members,
- The members are enclosed by { } and separated by a comma.
What is the set of natural numbers?
The set containing all positive integers greater than or equal to zero.
What is the set of whole numbers?
The set containing all integers.
What is the set of rational numbers?
The set containing all numbers which can be expressed as a fraction.
What is the set of irrational numbers?
The set containing all numbers which cannot be expressed as a fraction.
What is the set of real numbers?
The set containing all numbers which can be used as a measurement. Ultimately, the combination of the sets of rational and irrational numbers.
What is the set of imaginary numbers?
The set of imaginary numbers consists of numbers that can be expressed as a real number multiplied by the imaginary unit (root(-1)).
In other words, all numbers not in the set of real numbers.
What are ordinal numbers?
Numbers used to describe the position of values in a list or set.
What is a number system?
A way of using symbols to represent values, such as the denary/decimal system, which uses the 10 characters 0-9.
What is a base, in the context of number systems?
The amount of symbols that system uses to construct values.
What is the denary/decimal number system?
The number system which represents numbers with 10 symbols, 0-9.
What is the binary number system?
The number system which represents numbers with 2 symbols, 0 and 1.
What is the hexadecimal number system?
The number system which represents numbers with 16 symbols, 0-F.
Why is hexadecimal used to display binary values often?
Why does every computer contain millions, if not billions of simple circuits containing only a switch?
This is because a switch can represent binary 1 and 0 (ON and OFF) very efficiently.
What is a bit?
A single binary digit.
What is a byte?
A collection of 8 bits.
What are the decimal prefixes used for bytes by the public?
What are the binary prefixes used for bytes by computer scientists and computers themselves?
How does pressing a key on a keyboard lead to something happening on a computer?
Each key corresponds to a binary value which, when a key is pressed, gets sent to the computer, where the keyboard’s driver program translates this value into a format which is understood by the computer and the computer uses that value to do what it does when said key is pressed.
What is ASCII?
A standard for encoding keys on a keyboard as specific, consistent values. Originally used 7 bits, later 8 bits.
ASCII - American Standard Code for Information Interchange.
What is Unicode?
A standard for encoding keys on a keyboard as specific, consistent values, used to encode characters from every used language. Each character has a variable length of 16 or 32 bits.
What are transmission errors?
When data is transmitted, it doesn’t always arrive in the same format that it was sent because of various circumstances like:
- Electrical interference,
- Power surges,
- Synchronisation issues,
- Wear and tear on the cable or connectors.
What are the 4 error detection techniques on the course?