Computer Science (Y8) End of Years Revision Flashcards
So the big Grau's doesn't get annoyed (29 cards)
How many digits does the binary system use? What are they?
2 (0 and 1)
How many digits does the denary number system use? What are they?
10 (1, 2, 3, 4, 5, 6, 7, 8, 9 and 0)
What are the placeholder values for an 8-bit binary number?
1,2,4,8,16,32,64,128
Convert the binary number 01001110 to a denary number
78
Convert the binary number 00011111 to a denary number
31
Convert the binary number 10000001 to a denary number
129
Convert the denary number 42 to an 8-bit binary number
00101110
Convert the denary number 100to an 8-bit binary number
01100100
Convert the denary number 74 to an 8-bit binary number
01001100
How many digits does the hexadecimal number system use? What are they?
16 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F,)
Why are there letters in this system?
So it can be base 16
What is the hex value for the number 12?
C
What is the hex value for the number 7?
7
Convert the binary number 00110111 to a hexadecimal number
37
What is the purpose of using the hexadecimal number system?
To represent larger numbers with less characters
Describe what an image pixel is.
A pixel is the smallest unit of a digital image or graphic that can be displayed.
What is meant by the term colour depth?
Colour depth, also known as bit depth, is either the number of bits used to indicate the colour of a single pixel, or the number of bits used for each colour component of a single pixel.
What are the 3 colours used in image pixels?
Red, Green and Blue
An image has a colour depth of 4. How many different colours are available for this image?
16
What is the purpose of the ASCII character set?
ASCII , an acronym for American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices.
How many characters are represented by the ASCII character set?
128 characters
What is the need for the Unicode character set?
Unicode is a standard with the goal to cover all possible characters in the world (can hold up to 1,114,112 characters, meaning 21 bits/character maximum.
What is Abstraction?
Abstraction in computer science is the process of simplifying complex systems by focusing on essential details while ignoring unnecessary complexities.
What is Decomposition?
In computer science, decomposition is a problem-solving technique that involves breaking down complex problems into smaller, more manageable parts.