ISF DP Computer Science

Computer Organization #


Review Tools #

Topic 2 Revision from Computer Science Cafe.

Topic 2 Key Terminology from Computer Science Cafe.

Topic 2 Quizlet Flashcards from CS Classroom.

Topic 2 Video from CS Classroom.


Key Terms #


Example Problems #


State the hexadecimal equivalent of the following binary number: 11011111. [1]


State the hexadecimal equivalent of the binary number 11111011. [1]


State the hexadecimal representation of the binary number 10001010. [1]


State the hexadecimal equivalent of the binary number 10011110. [1]


Calculate the denary (base 10) equivalent of the hexadecimal number BF. [2]


State the binary equivalent of the denary number 89. [1]


State the binary equivalent of the denary number 37. [1]


Calculate, showing your working in each case: the binary (base 2) value of the denary (base 10) number: 105. [2]


Calculate, showing your working in each case: the hexadecimal (base 16) value of the denary (base 10) number: 200. [2]


Each pixel on a computer screen has three colour values associated with it: red, green and blue. The range for each of the three colour values is from 0(10) to 255(10). Colour values can also be represented in hexadecimal. For example, the colour blue can be represented in hexadecimal as 0000FF.

(a) State the binary representation of the colour blue. [1]


(b) State the number of colours that can be represented in each pixel on the computer screen. [1]


Colours are represented by a computer as a combination of the three primary colours: red, green and blue. Numerical values are used to represent the different shades of each primary colour. These values range from 0 to 255 in decimal, or 00 to FF in hexadecimal.

(a) State why hexadecimal numbers are frequently used in computing. [1]


(b) State the number of bits used to represent a non-primary colour, such as yellow. [1]


(c) State the maximum number of colours that can be represented in a computer pixel. [1]


Outline one reason for using Unicode to represent data in a computer system. [2]


Boolean operators #


Define the NOR Boolean operator. [1]


Define the Boolean operator XOR. [2]


Define the Boolean NAND operator. [1]

Logic Gates and Circuits #


A car has features that monitor its speed, direction and distance from the car in front.

InputBinary representationDescription
A0Car is less than 20 metres from the vehicle in front.
A1Car is 20 metres or more from the vehicle in front.
B0Car is travelling in reverse or stationary.
B1Car is travelling forward.
C0Car speed is more than 130 kilometres per hour.
C1Car speed is 0-130 kilometres per hour.

For example, if the car is travelling forward, input B would have a binary representation of 1.

(a) Construct a logic diagram with inputs A, B, and C and output Z to represent the following scenario:

Output Z equals 1 when:

  • The car is travelling forward AND it is less than 20 metres from the vehicle in front.
    OR
  • The car speed is more than 130 km per hour.

In all other conditions, output Z equals 0. [4]


Information similar to that presented in the chart above could be used to construct decisions and conditions in program design.

IdentifierDescription
FDistance in metres to the vehicle in front
SSpeed of car in kilometres per hour
TTravelling in a forward direction

(b) Determine the value of the following expression given that the input values for F, S and T are:

F = 5
S = 30
T = true

F >= 25 AND S >= 10 AND S <= 130 AND T = true [2]

You must show your working.


Truth Tables #


Construct a truth table for the logic expression A NAND (B NOR C). [4]


Construct a truth table for the following expression: A OR NOT B AND C. [3]


Copy and complete the following truth table where:

X = A XOR B
Y = A NOR C
Z = X OR NOT Y [4]

ABCXYZ
000

Construct a truth table for the logic expression (A NAND B) NOR C. [4]


Construct a truth table for the following logical expression: (A XOR B) AND NOT C. [4]


Construct a truth table for the following expression: (A XOR B) AND B. [3]


Construct the truth table for the following logic circuit. [4]


Construct the truth table from the following logic circuit. [3]


Draw the truth table for the following logic circuit. [4]


Draw the logic circuit represented by the following truth table. [2]

ABZ
001
010
100
111

Construct a logic diagram for the following expression: [3]

NOT A OR (A AND B).


Computer Architecture #


Outline the purpose of the memory data register (MDR). [2]


Outline the purpose of the memory address register (MAR). [2]


Outline the purpose of the memory address register (MAR) in the central processing unit (CPU). [2]


Identify three functions of the control unit (CU) in the central processing unit (CPU). [3]


State the function of the control unit (CU) in the central processing unit (CPU). [1]


Explain the purpose of cache memory. [3]


State the part of the central processing unit (CPU) that is responsible for carrying out calculations. [1]


Distinguish between two types of primary memory. [2]


Identify one characteristic of random access memory (RAM). [1]


Explain the use of cache memory. [3]


Distinguish between random access memory (RAM) and read-only memory (ROM). [2]


Explain how cache memory affects system performance. [3]


The machine instruction cycle is a sequence of actions that a central processing unit (CPU) performs to execute each machine code instruction in a program.

(a) State where the program is held. [1]


(b) State the part of the central processing unit (CPU) that performs the decoding. [1]


(c) Outline the function of the memory address register (MAR). [2]


Operating Systems and Applications #


Identify one function of a single-user operating system. [1]


Outline the function of a web browser. [2]


State two features of a web browser. [2]