Font size
WorksheetsYear 11 - CS - Blended Learning 13 - Structure of Data
Total questions: 114
Worksheet time: 1hrs 23mins
People have used the word ________ to mean computer information that is transmitted or stored.
Beta
Data
Database
None of above
What kind of 'base' system is binary known as?
Base 12
Base 8
Base 2
Base 10
What is B in denary
10
11
12
13
What is E in denary
10
12
14
16
12 in denary is what in Hex?
A
B
C
D
15 in denary is what in Hex?
A
B
E
F
What is 0111 in hex
E
A
7
3
What is A in binary
1111
0101
1010
0110
What is 1011 in hex
B
C
D
E
What is D in binary
1111
1101
1011
0111
Who uses Hexadecimal?
Computers
Humans
Robots
A vector image is created using
coloured pixels.
dots.
images.
mathematics formulas.
When we enlarge a vector graphic, its quality
improves.
is never lost.
reduces.
stays the same.
Vector graphics can be easily edited using a computer software.
TRUE
FALSE
Bitmap graphics are made up of
dots.
images.
mathematics formulas.
coloured pixels.
When we enlarge a bitmap, its image quality
becomes pixelated or blurry.
improves.
reduces.
stays the same.
The resolution of an image refers to the quality of the image.
TRUE
FALSE
A high quality image means
its file size is larger.
its file size is smaller.
it is sharp and clear.
it is blurry and pixelated even when not zoomed in.
A high quality image means
its file size is larger.
its file size is smaller.
it is sharp and clear.
it is blurry and pixelated even when not zoomed in.
Bitmap graphics will never lose their image quality when enlarged.
TRUE
FALSE.
A higher quality image means it takes ______ storage space and a _______ time to download.
less, shorter
less, longer
more, shorter
more, longer
After enlarging a graphic, our screen shows the above. We can confirm that it is a ______ graphic.
bitmap
vector
After enlarging a graphic, our screen shows the above. We can confirm that it is a ______ graphic.
bitmap
vector
After we export a file to bitmap,
we can edit the bitmap graphic easily.
TRUE
FALSE
What is the correct order from smallest to largest
Nibble, bit, byte, megabyte, kilobyte, gigabyte, terabyte
Bit, nibble, byte, kilobyte, megabyte, gigabyte, terabyte
Nibble, byte, bit, kilobyte, megabyte, gigabyte, terabyte
Bit, nibble, byte, kilobyte, megabyte, terabyte, gigabyte
which is an example of secondary storage
RAM
External hard drive
Secondary storage memory is basically
volatile memory
non volatile memory
backup memory
impact memory
Where is virtual memory located
RAM
ROM
SSD
Hard disk
What is the sample rate?
The number of times a sound wave is sampled per second
The number of bits used to store each sample
How loud a sound is
The size of the sound wave
What is sample rate measure in?
Bits
Hertz
GB
amps
What is used to convert a sound wave in to a digital format?
A sound wave converter
A router
An amplitude to digital converter
Analogue to digital converter
What is the formula for finding a sound files size?
size = rate * resolution * seconds
size = rate * resolution * minutes
size = amplitude * bits * seconds
size = sample * frequency * bits
What is amplitude?
Number of samples taken
The number of bits per sample
The height of the sound wave
The pitch
What is the file size (in bits) of a sound with the following properties:
Sampling rate = 1,000Hz
Sample resolution = 16 bits
Length = 300 seconds
480 bits
4,800 bits
408,000 bits
4,800,000 bits
A sound has a file size of 17, 640 kilobytes. How much would this be in megabytes?
1.76 Mb
17.64 Mb
176.4 Mb
1764 Mb
Which is the smallest form of data?
Bit
Byte
Nibble
8 Binary Digits
Which answer is correct from smallest to largest?
Kilobyte, Gigabyte, Megabyte
Gigabyte, Megabyte, Terabyte
Megabyte, Terabyte, Kilobyte
Byte, Kilobyte, Megabyte
Which is larger?
Megabyte
Gigabyte
How many Bits are in a Byte
2
4
10
8
Which is larger?
Bit
Byte
A character set is... (4-6)
what language can be used in a computer system.
the fonts that a computer has installed.
a defined collection of characters recognised by a computer.
A variable is a named value that can be changed in the program.
False
True
What is a String?
A data type that contains whole numbers. eg: 3, 45, 124
Numbers with decimal point. eg: 0.5, 2.45, 56.04
Group of characters between quotation marks. eg: "dog"
Data type that can only be True or False.
Which value is a String?
64
"cat"
True
0.5
What is an Integer?
A data type that contains whole numbers. eg: 3, 45, 124
Numbers with decimal point. eg: 0.5, 2.45, 56.04
Group of characters between quotation marks. eg: "dog"
Data type that can only be True or False.
Which value is an Integer?
64
"cat"
True
0.5
What is a Float?
A data type that contains whole numbers. eg: 3, 45, 124
Numbers with decimal point. eg: 0.5, 2.45, 56.04
Group of characters between quotation marks. eg: "dog"
Data type that can only be True or False.
Which value is a Float?
64
"cat"
True
0.5
What is a Boolean?
A data type that contains whole numbers. eg: 3, 45, 124
Numbers with decimal point. eg: 0.5, 2.45, 56.04
Group of characters between quotation marks. eg: "dog"
Data type that can only be True or False.
Which value is a Boolean?
64
"cat"
True
0.5
Which writes a message for the user?
input()
myVar="Hi"
print("Hello!")
max=100
100
TRUE
"D"
I want to ensure that users enter a name into the Surname field. Which type of validation should I use?
Length check
Check digit
Presence check
Format check
I want to ensure that users enters a telephone number which starts with +44 and is 13 characters long. Which validation/s should I use?
Length Check
List Check
Format Check
Presence Check
I want to ensure that users enter a national insurance number that follows the pattern letter letter number number number number number number letter?
Length check
Format check
Check Digit
Presence Check
Which validation method would you use for a user to choose a gender?
Boolean
Check digit
Value lookup check
Range check
Validation checks to see if something is?
Sensible
Reasonable
Correct
Accurate
Validation rules can be used to create which checks?
Presence check
Format check
Range check
Lookup check
