1. You need to write a loop that will repeat exactly 125 times. Which is the preferred loop construct to use? a. while loop b. do while loop c. for loop 2. You need to write a loop that will keep reading and adding integers to a sum, until the sum reaches or exceeds 21. The numbers are all less than 20 and the sum is initially 0. Which is the preferred loop construct to use? a. while loop b. do while loop c. for loop