ALGORITHM AND PROGRAMMING (BIC 10204) (SECTION 4) MADAM HANAYANTI BINTI HAFIT #teamsuccess Lab session 1 (17 September 2018) 1. Identify what are the input, process and output. a.) Find the mean of 4 numbers P,Q,R and S. Answer Input : P,Q,R,S Process : Calculate the mean = (P+Q+R+S)/4 Output : Mean of 4 numbers b.) Convert a length of an object from millimeter to centimeter. Answer Input : Length of object in millimeter Process : Convert millimeter to centimeter, length = 10/length in millimeter Output : Length of object in centimeter c.) Calculate the volume of a cone, if the volume is below 12cm³, print “Accepted” but if the volume is equal or more than 12cm³, print “Not Accepted” . Answer Input : Volume of cone Process : Determine whether volume below, equal or more 12cm³ Output : Accepted, Not Accepted 2. Draw the fl...