Writing Algorithms that uses an Array (5 marks)
Consider a one-dimensional array temperatures that stores weekly temperature data. An algorithm is required to find the highest temperature in the array and its corresponding day of the week. Write pseudocode to perform this task. The days of the week are represented as an array of strings days [“Mon”, “Tue”, “Wed”, “Thu”, “Fri”, “Sat”, “Sun”].
Writing Algorithms that uses an Array (5 marks) Read More »

