Font size
WorksheetsA Level computer science re-cap
Total questions: 145
Worksheet time: 2hrs 53mins
What are the two parts of most instructions
Numeric and Nmunics
Up and Down
Start and End
Opcode and Operands
CPU clock speed is measured in
Megabytes
Joules
bits
Gigahertz
What happens if you increase the number of cores
CPU can process instructions quicker
CPU can process more instructions at the same time
CPU will explode
Which of these describes the number of instructions a CPU can process per second?
Clock Speed
Control Unit
Memory
What do the buses in a CPU do?
Move people around
Store memory
Execute instructions
Carry information around the system
Most modern processors will make use of the Harvard architecture in their ..... dividing the .... memory into separate parts.
RAM
ROM
Cache
HDD
overheat
SELECT title
FROM videogames
WHERE title LIKE '%2'
SELECT title
FROM videogames
WHERE title LIKE '4%'
Convert the number -65 to binary using two's complement:
01000001
01000000
10111111
11000111
How many bits in a nibble?
2
4
8
1
How many bits are there in a byte?
8
10
2
9
State the decimal representation for the hexadecimal number C
12
13
14
15
1111 - 101
1010
1001
10111
1110
11011 - 1111
1100
11000
1011
1110
11011 - 1111
1100
11000
1011
1110
11110000 - 01010111
10011011
11110000
1111000
10011001
Method used to store integers is classified as
sign and magnitude method
One's complement
Two's complement
Three's complement
Convert -199 from decimal to binary using two's complement notation.
101111000
110111010
100111001
100111000
What is 6.625 in fixed point binary (4 bits for the whole number / 4 bits for fractional part)?
01101010
10001010
01101100
10001100
What is 0.125 in fixed point binary (4 bits for the whole number / 4 bits for fractional part)?
10001000
00000010
00001000
00011000
Convert 11011.1001 to denary.
27.8125
27.5625
31.5625
31.34375
Which is NOT a disadvantage of fixed point binary numbers?
cannot represent the range of numbers
cannot represent the accuracy of numbers
easier to process
In floating point binary, it holds the detail of the number.
Mantissa
Exponent
In floating point binary, it holds the multiplier.
Mantissa
Exponent
010110100011 (8 bit signed mantissa / 4 bit signed exponent) what is the decimal number?
5.625
11.5
-5.625
-11.5
100101000011 (8 bit signed mantissa / 4 bit signed exponent) what is the decimal number?
9.25
-9.25
-6.75
6.75
011000001110 (8 bit signed mantissa / 4 bit signed exponent) what is the decimal number?
0.1875
-0.1875
96
-96
Why do we carry out normalisation on floating point binary numbers?
To convert the number into a negative number
To round a decimal number down
To provide the maximum level of precision
To round a decimal number up
What is the two's complement of 01100010 ?
10011101
11011101
10011110
10011111
In normalised floating point form, a positive number always has what beginning?
01
10
In normalised floating point form, a negative number always has what beginning?
01
10
What is the normalised form of 0.0000111 0111
1.0110000 0011
1.0110000 0111
0.1110000 0111
0.1110000 0011
What is the normalised form of 1.1100011 0011 ?
1.0001100 0001
1.0001100 0011
0.1001100 0001
0.1001100 0011
Convert 88 to normalised floating point binary.
0.1011000 0101
1.0011000 0111
0.1011000 0111
0.1011000 0110
Add 0.1100000 0001 and 0.1111100 0011 and normalise the result.
1001.0100 0100
0.1001010 0100
1.0010100 0100
0.1010100 0111
Subtract 0.1110000 0011 from 0.1101000 0100 and normalise the result.
0.1100000 0011
1.0100000 0011
0.1100000 0111
1.0100000 0111
Subtract 0.1011000 0011 from 0.1100100 0010 and normalise the result.
1.0110100 0010
0.1110100 0010
0.1101000 0010
1.0110100 1000
010101010
110101110
do to
010101010
11110111
do to
010101010
11110111
do to
010101010
00000000
do to
010101010
00000000
do to
010101010
00000000
do to
010101010
How many bits are used in ASCII?
16
1
7
8
How many bytes are used in Unicode?
8
16
1
2
The ASCII code is represented using 16 bits.
TRUE
FALSE
The ASCII code is capable of representing non-European languages.
TRUE
FALSE
Upper and Lower case letters have a different ASCII code.
TRUE
FALSE
What is the maximum number of positive integer values that can be represented in 8-bits?
16
256
65536
128
What is the maximum number of positive integer values that can be represented in 7-bits?
16
256
65536
128
A character set is...
What language can be used in a computer system
The fonts that a computer has installed
The possible characters that can be represented by a computer system
ASCII can represent more characters than Unicode
TRUE
FALSE
Which of the following is the correct Boolean expression for this circuit?
(A AND B) OR (X AND Y) = Z
NOT (A AND B) = Z
(NOT X) OR (NOT Y) = Z
(NOT A) AND (NOT B) = Z
Which of the truth tables shown below, accurately represents this logic circuit?
How many of the following Boolean expressions correctly represent the diagram shown? (Choose as many as are appropriate)
X = (A AND C) OR B
X = (A OR B) AND NOT C
X = (A AND B) OR C
X = (NOT C) AND (A OR B)
Which of the following is the correct truth table for the Boolean expression shown here:
Select all equivalent expressions
Q is A or B
Q = A + B
Q is A and B
Q = A NOT B
Using the Karnaugh Map, find the logical expression.
NOT A NOT B
A NOT B
A NOT B
AB
Using the Karnaugh Map, find the logical expression.
NOT A NOT B
A NOT B
A NOT B
AB
Using the Karnaugh Map, find the logical expression.
A NOT B NOT C OR ABC
A NOT B NOT C OR ABC
NOT A NOT B NOT C OT NOT A B C
ABC OR NOT A NOT B NOT C
What is the simplified expression?
A NOT B OR AB
A
B
1
What is the simplified expression?
B' + D
B'D
B + D'
AB + CD
What is the Logic Expression (equation) for this truth table?
(A'+B)(A+B')(A+B)
A'B + AB' + AB
(A'B)(AB')(AB)
A + B
