Daily Practice · GCSE Computer Science

January 1968 5-a-day

Every sheet in January 1968

The same date always regenerates the same five questions, so a sheet you print today is the sheet a classmate prints tomorrow.

  1. 1st January 1968Explain why iterative testing, carried out throughout development, tends to make errors cheaper to fix than relying only on final testing.
  2. 2nd January 1968Define the term 'primary key' as used in a database table.
  3. 3rd January 1968Define the term 'interrupt' as used to describe a signal received by a CPU.
  4. 4th January 1968An array called items contains [12, 45, 7, 30, 19] at indices 0 to 4. Describe how a linear search would locate the value 30, stating the number of comparisons needed.
  5. 5th January 1968Evaluate X = NOT A AND B when A = 0 and B = 1.
  6. 6th January 1968Convert the 8-bit binary number 10110100 directly to hexadecimal by splitting it into nibbles.
  7. 7th January 1968Give one advantage of a star topology compared with a mesh topology.
  8. 8th January 1968Explain why an interpreter is often preferred while a program is being written.
  9. 9th January 1968Add the 8-bit binary numbers 00101101 and 00010011, giving your answer as an 8-bit binary number.
  10. 10th January 1968State the three stages of the fetch-decode-execute cycle in the order they occur.
  11. 11th January 1968State one weakness of a simple shift cipher compared to modern encryption methods used on networks.
  12. 12th January 1968A 2D array grid is declared as grid[4][6]. State how many rows and columns it has and how many elements it holds in total.
  13. 13th January 1968Define the term 'pixel'.
  14. 14th January 1968Order these from fastest access speed to slowest: RAM, cache, registers, secondary storage.
  15. 15th January 1968Which piece of UK legislation makes it a criminal offence to gain unauthorised access to a computer system?
  16. 16th January 1968Evaluate the expression 23 DIV 4.
  17. 17th January 1968A function is defined as: FUNCTION addTax(price) RETURN price x 1.2 ENDFUNCTION. Another line of code runs: total <- addTax(20) + addTax(30). Trace both function calls and state the final value of total.
  18. 18th January 1968A 1 TB hard disk drive costs 40 pounds. A 500 GB solid-state drive costs 60 pounds. Calculate the cost per gigabyte of each device, and state which is cheaper per GB. Use 1 TB = 1000 GB.
  19. 19th January 1968State the layer that IP operates in, and describe its job.
  20. 20th January 1968A 'quantity' field on a website must only accept whole numbers from 1 to 10. Which validation check identifies that 15 has been entered?
  21. 21st January 1968A table called staff has fields staffId, name, department and salary, storing these records: staffId | name | department | salary, 1 | Ben | Sales | 24000, 2 | Chloe | IT | 31000, 3 | Dan | Sales | 27000. State which staffId(s) would be returned by: SELECT staffId FROM staff WHERE department = 'Sales' AND salary > 25000;
  22. 22nd January 1968A row of 8 pixels is WWWBBBWW. Use run-length encoding to encode this row as pairs of (colour, run length).
  23. 23rd January 1968An array contains [9, 2, 6], to be sorted using insertion sort. Show the state of the array after each new element has been inserted into its correct position.
  24. 24th January 1968Complete: NOT 0 = ?
  25. 25th January 1968Convert the 8-bit binary number 01011010 to denary.
  26. 26th January 1968State what LAN stands for.
  27. 27th January 1968Describe what syntax highlighting is and how it helps a programmer.
  28. 28th January 1968An 8-bit register stores the value 01100000 (denary 96). State the resulting 8-bit binary value after a left shift by 1 place, and state whether an overflow occurs.
  29. 29th January 1968Which CPU register holds the address of the next instruction to be fetched?
  30. 30th January 1968Distinguish between the network security threats known as phishing and pharming.
  31. 31st January 1968Trace this algorithm with data = [4, 9, 2, 9, 7] and state the final output. total = 0; count = 0; for i = 0 to 4: if data[i] > 5 then total = total + data[i] and count = count + 1; next i; print(total, count).