Writing Algorithms: Arrays (5 marks)
An array of student scores needs to be analysed to determine how many students scored more than 50 marks. The array scores contains the following data: [45, 62, 33, 55, 90, 49]. Write pseudocode that: Sets up a counter for scores above 50. Uses iteration to count how many students scored above 50. Outputs the […]
Writing Algorithms: Arrays (5 marks) Read More »