Data Representation Flashcards
What are the different number bases?
Natural, integer, rational, irrational, real, ordinal
What numbers and what is the symbol for natural numbers?
N = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, …}
What numbers and what is the symbol for integer numbers?
Z = { …, -2, -1, 0, 1, 2, 3, …}
What numbers and what is the symbol for rational numbers?
Q = a number that can be represented by a ratio of two numbers. E.g. 3/2
What are irrational numbers?
An irrational number is a number that cannot be represented by a ratio of integers e.g. π.
What are real numbers?
A real number is any positive or negative value and can include a fractional part.
What are ordinal numbers and what is the symbol for them?
Ordinal number asre those that identify the position of something within a list.
S = { “Anne”, “Asif”, “John”, …}
What are Natural numbers?
Natural numbers are the most recognisable type of number as they are the numbers that we use every day for counting and ordering. They are typically made up of decimal numbers.
What are integer numbers?
An integer number is a whole number whose value can be positive or negative. ( Zero is counted)
What are rational numbers?
A rational number is a number that can be represented as a fraction.
What are some uses of natural numbers in programming?
A counter of number of things in stock, score in video game etc, keep track of next instruction, identify next location of data, a counter for how many times a loop statement.
The use of real numbers in programming?
CNC machines need lots of accuracy to the millimeter, microwave cookers control and measure both time and temperature, power stations use data control systems to optimise production, robotic engineers use real time measurement of the environment in which the robot is working.
What is a bit?
A bit is a binary digit. It can hold the values of 1 or 0.
What is a byte
A byte is 8 bits. This is where we begin to measure the size of memory or disk space in terms of megabytes gigabytes and terabytes.
What is the difference between kibi bytes and kilo bytes? (And the rest of them)
Kibi (mebi Gigi tebi) is measured in binary therefore a kibibyte is 2^10. And a kilobyte is measured in decimal therefore 10^3
What are the three number bases we look at?
Base 10 - decimal
Base 2 - binary
Base 16 - hexadecimal
What are the uses of hexadecimal?
- Hex is used for, representing large digits with fewer digits
- Hex is used for, representing colour
- Hex is used for, Mac addresses
What is main advantage of Hex?
With 2 hex digits represents one byte. It is often referred to as shorthand for binary.
What is two’s compliment?
Two’s compliment is a method used to represent signed integer values. This means they can represent both positives and negatives.
What does two’s compliment do?
It makes the msb negative. Eg in 8 bit binary the msb with twos compliment the msb becomes -128.
To convert a negative integer into a binary you must? (Using two’s compliment)
For example to covert -102 to binary you:
First write out +102: 01100110
Then starting at the lsb write out the number until you reach the first 1.
Then reverse all the remaining bits.
So -102 is:
10011010
What is a fixed point number?
A fixed point member is a binary number that has decimal places.
What is a fixed point number?
A fixed point member is a binary number that has decimal places.
What is a floating point number?
A floating point number is a decimal number that’s decimal point can float up and down the binary string to help represent more numbers.
What does a floating point number consist of?
It has a mantissa and the exponent.
E.g
450 000 000 000 = 4.5×10^11
4.5 is the mantissa
And 11 is the exponent meaning that the decimal moves 11 places to the right.
What is the benefits of fixed point over floating?
-The values are handled in the same way as decimal values, so any hardware made to work with integers can work with this.
- The absolute error will be the same this means that precision is retained.
-It is suited to applications where speed is more important
- It is suited to appliances that need absolute level of precision
What are the benefits of floating point over fixed point?
A much wider range of numbers can be produced with the same number of bits
Consequently floating point lends itself to applications where a wide range of values may need to be represented.
What is normalisation?
Normalisation is a technique used to ensure that when numbers are represented they are as precise as possible.
How do you normalise a binary number?
For example: the binary number 01101100 normalised would be 0.1101100 the binary point would have moved back 7 points meaning that the exponent is 7. 0111 therefore the normalised rep of 108 is 0.110110001111
What is a rounding error?
When working with decimal numbers we are used to rounding numbers up or down. As a consequence we get rounding errors.
What are absolute and relative errors?
The absolute error is the mathematical difference between the answer and the approximation.
Relative errors are the absolute error divided by the number intended to be stored.
Absolute error ÷ number intended
What is ASCII?
ASCII used to be the standard that was agreed to cover all keyboard characters. It was later changed to extended ASCII (8 bits instead of 7).
What are the problems with ASCII?
The main problems with ASCII are that:
- 256 characters is still not sufficient to represent all the possible characters
- It was initially developed in English and therefore did not represent other languages
- the range of platforms and programs has increased massively with developers from around the world who use a much larger ranger of characters
What is Unicode?
Unicode was a new standard created which follows the same basics as ASCII in that it has a unique 8 bit code for every character on a standard English keyboard. But Unicode also includes for over 20 countries.
What type of encoding does Unicode use? (UTF what?)
UTF 8 and 16. UTF 16 udes 16 bit codes
How did Unicode allow itself to be implemented easier?
Unicode used ASCII so that older platforms could handle it. Unicode aims to cover every platform in terms of hardware and operating systems, every foreign language and every platform.
What is a parity bit?
A parity bit is a method of detecting errors in data during transmission.
How do parity bits work?
They look at the amount of 1s in the bit string.
Even parity:
If the amount of 1s is odd then the bits is a 1
Odd:
If the amount of 1s is even then the bit is set as 1 so the amount of 1s is odd.
How does majority voting work and what is it?
Majority voting is where each bit is sent 3 times to reduce errors. Eg the binary string 101 would be sent as 111000111. It is another way of checking for errors.
Using majority voting what should the bit pattern 101000100111 be when made smaller?
1001
What are check digits?
Check digits are another common way of checking data. They are used on barcodes in super markets. Like a parity bit they are used to check for errors
How do check digits work?
Original number - 2 3 0 4 5
Weighting. - 6 5 4 6 2
Multiply by weight and add together
= 49
Divide by 11 = 4 remainder 5
Subtract the remainder from 11
11 - 5 = 6
Do check digit is 6
What are bit mapped graphics?
Bit mapped graphics are how images are stored on a computer. They are mad up of pixels.
What is the equation for resolution and what is resolution (images?)
Resolution=width * hight
Resolution is the amount of pixels by pixels.
Eg 10*10 resolution would be 10 pixels by 10 pixels
What is the equation for resolution and what is resolution (images?)
Resolution=width * hight
Resolution is the amount of pixels by pixels.
Eg 10*10 resolution would be 10 pixels by 10 pixels
What is colour depth, and the equation for it?
Colour depth is the amount of different colours.
The equation is 2^n ( n= the amount of bits)
How do you calculate how much storage is taken up by an image?
Storage = colour depth * resolution
What is an ADC? Also what is a DAC? What are they used for?
ADC is analogue to digital conversion
DAC is digital to analogue conversion
They are used to convert between analogue and digital sounds. A MIDI device would be plugged into the computer and then the pc could record the sound from it.
What do ADC AND DAC do?
ADC converts sound from an anolouge sound to a digitally stored one. Eg a microphone.
A DAC does the reverse. Eg a speaker.
What are the advantages of MIDI?
Files are smaller
Completely editable files
Supports a wide range of instruments
Produce high quality sound
What is sampling?
Sampling is the process of converting analogue sound waves into digital from to create what id commonly known as ADC conversion.
To make a more accurate sound increase the sampling rate.
How do you calculate the size of an audio file?
Sample rate * length of recording (seconds) * sampling resolution (bits)
What is compression and whatt are the two examples of it?
Compression is the process of encoding information with fewer bits so it takes up less space.
Lossy compression is where when restored the file won’t be the same.
Lossless compression is where when restored the film will be the exact same.
What are some examples of lossless compression?
RLE and dictionary based compression
What are some examples of lossless compression?
RLE and dictionary based compression
What is RLE?
RLE is run length encoding. It is a compression method where data is eliminated if it is repeated. For example if you tried to compress RRRRR using RLE it would become R5
What is dictionary based compression?
Dictionary based compression is where a program references a dictionary in correlation to a x (page) and a y ( num on Page) value
What is dictionary based compression?
Dictionary based compression is where a program references a dictionary in correlation to a x and a y value
What is lossy compression?
Lossy compression is well when an image or a sound is stored it is compressed then when trying to return it to its normal size it will have lost some of the original. Eg not as good quality XX
How do all ciphers work?
They work by turning plaintext into ciphertext.
What is plaintext and ciphertext?
Plaintext is data in human readable form
Ciphertext is data that has been encrypted.
What are the ciphers we study?
Vernam cipher, Caesar Cipher, and the transportation cipher.
What is the Caesar Cipher?
The Caesar Cipher, is a substitution cipher, this method substitutes each letter of the alphabet for another character by simply shifting the letters forwards or backwards.
What is a polyalphabetic?
A polyalphabetic is where you use more than one alphabet.
What is frequency analysis?
Frequency analysis is where you look at the letters and count them. In English the most used letter is “e” therefore if we find a lot of a certain letter in cipher text, we might be able to assume it’s “e”
What is the transposition cipher?
The transportation cipher I’d where all the letters are rearranged to make an anagram.
What is the Vernam cipher?
The Vernam cipher (one time pad) is the only cipher that is unbreakable under certain conditions. The key for the Vernam Cipher should be the same length or longer then the plaintext your trying to encrypt.
What are the conditions needed to make the Vernam Cipher unbreakable?
The encryption key must be equal or longer then the plaintext
The key must be truly random
The key is only used once and then destroyed (the key must be given in person to the person who is trying to decrypt the message)