Lab Exercise and Revision Topic 1 (27th October 2022, time : 10.30am -12.30pm, location : SOC Lab 3) Dear madam, the highlighted text below is hyperlinked to a word document containing the revision you have assigned to the class complete with answer. Revision Attachment Lab Exercise: Creating Algorithm (pseudocode and flow chart) for problem solving Exercise 1 IPO Input: midSem, assignment, quiz Process: carryMarks = midSem+assignment+quiz Output: carryMarks Pseudocode Start Input midSem, assignment, quiz Calculate carryMarks = midSem+assignment+quiz Output carryMarks End Flow Chart Exercise 2 IPO Input: length, width, height Process: volume = length x width x height Output: volume Pseudocode Start Input length, width, height Calculate volume = length x width x height Output volume End Flow Chart Exercise 3 IPO Input: π = 3.142, radius Process: area of circle = π x radius x radius Output: area of circle Pseudocode Start Input π = 3.142, radius Calculate are...