How are characters represented on a computer?
- Each character assigned a code point
What is ASCII?
What is extended ASCII?
What is Unicode?
What are sound cards?
-Translate analogue sound into digital signals for the computer to understand
How are sound waves converted so a computer can understand them?
What is a digital analogue converter?
What is the sampling rate?
What is the bit rate?
What is a bitmap image?
What is the colour depth?
What are vector graphics?
What are the main data types we use?
1) Go through examples of how to convert +/- denary > +/- Binary and how to convert denary and binary into hex
2) Also go through binary mathematics
Do above
What is metadata?
What is the resolution of an image?
-The number of pixels per unit (ppi)
What is hex?
Short form of binary that is easy to remember
How do you add FLPB?
1-convert exponent back to SF
2-Reverse the exponent
3-add like normal binary
How do you sub FLPB?
1-convert exponent back to SF 2-reverse the exponent 3-make both mantissas the same size 4-convert the negative using 2's compliment 5-add one to the negative value 6-add like normal binary
What does shifting do?
What is a mask? (Bitwise manipulation)
-bits in the mask chosen to manipulate the bits in the operand, allowing them through or blocking them
What does the ALU use NOT operations for?
-NOT = creates a ones compliment value (all 1’s switch to 0’s and vise versa)
What does the ALU use AND operations for?
-AND = can be used to return bits by using a 1 in the mask or exclude bits by using a 0. Useful for checking conditions stored in a binary value
What does the ALU use OR operations for?
-OR = can be used to reset particular bits in the binary value. 1 will set the bit to 1, and using a 0 will return the matching bit in the original value