Help, me student 😅
1. Given the names and marks of n=12 students in Python Programming. (a) Calculate their grades (0-49 = F, 50-64 = C, 65-84 = B, 85-100 = A). (b) Calculate the minimum, maximum and average mark (rounded to 2 decimal places). Write a program to generate a report that resembles the below. 2. A factory employs n=15 workers. They are paid an hourly rate of RM37.50. Their wages are calculated as follows: wage = hours * rate for hours between 0 and <=40 = 40*rate + (hours – 40) * rate * 1.5 for hours >40 and <= 60 = 40*rate + 20*rate*1.5 + (hours – 60) * rate * 2.0 for hours > 60 Write a program to generate a report that resembles the below. 3. Write a program to generate 200 integer random numbers in the range [100, 999]. (a) How many are in the range (i) 100-249, (ii) 250-499, (iii) 500-749 and (iv) 750-999?