raijackson2000 raijackson2000 16-07-2020 Computers and Technology contestada How many times will the while loop that follows be executed? var months = 5; var i = 1; while (i < months) { futureValue = futureValue * (1 + monthlyInterestRate); i = i+1; } a. 5 b. 4 c. 6 d. 0