//What happens when you execute the following code? //Why? Redirect your output to a file so you can examine the values // java Loop > output public class Loop { public static void main (String[] args) { double sum = 0.0; while (sum != 1.0) { sum += 0.1; System.out.println("sum = " + sum); } } }