FOR EACH OF THE FOLLOWING SITUATIONS, TELL WHICH TYPE OF LOOP (WHI...

34. For each of the following situations, tell which type of loop (while,do-while, or for) would work best.a. Summing a series, such as 1/2 + 1/3 + 1/4 + 1/5 + . . . + 1/10.b. Reading in the list of exam scores for one student.c. Reading in the number of days of sick leave taken by employees in a department.d. Testing a function to see how it performs for different values of its arguments.