IGCSE Computer Science (0478) — May–June 2024, Paper 22
11 questions · every question answerable online with instant point-by-point AI marking against the official mark scheme.
Start with Question 1 →Tick (✓) one box to identify a method used to design and construct a solution to a computing problem. [ ] A analysis [ ] B coding [ ] C flowchart [ ] D testing
Answer this question and get it marked →Four logic functions and five standard symbols for logic gates are shown. Draw one line to link each logic function to its standard symbol. Not all standard symbols will be used.…
Answer this question and get it marked →Identify three different tasks in the analysis stage of the program development life cycle.
Answer this question and get it marked →A program needs to make sure the characters input for a product code meet these rules: - The product code is six characters in length. - The first two characters must be "PD". -…
Answer this question and get it marked →A high-level programming language makes use of arithmetic, Boolean and logical operators. State how each type of operator is used. Give an example statement, in pseudocode, for…
Answer this question and get it marked →Totalling and counting are standard methods of solution. Numbers are input. The number 9999.9 is the last number to be input and is ignored. Write an algorithm in pseudocode to…
Answer this question and get it marked →An algorithm has been written in pseudocode to find and display the maximum and minimum values in an array of 1000 positive numbers. The array List[] starts at index 1. 01 Max ←…
Answer this question and get it marked →A logic circuit is to be built to control the opening of a safe used to store money. There are two keys, A and B, and a time switch C. The safe can only open if both keys are used…
Answer this question and get it marked →This flowchart represents an algorithm. It uses a swap flag A and index B over the array List[1:5], comparing List[B] with List[B+1] and swapping them (via temporary variable T)…
Answer this question and get it marked →A television subscription service has a new database table named Contract to store details of their subscribers' contracts. Fields: ContractNumber (e.g. CT567), Months (e.g. 6),…
Answer this question and get it marked →A one-player game uses the 2D array Grid[] to store the location of a secret cell to be found by the player in 10 moves. Each row and column has 5 cells. The player starts at the…
Answer this question and get it marked →