pwhite6797 pwhite6797 Today at 5:20 AM Computers and Technology Answered 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; }