Choose the correct statement in context of the following program code.public class Test{ public static void main(String[] args){ double sum = 0; for(double d = 0; d < 10;){ d += 0.1; sum += sum + d; } }}

TRUE ANSWER : ?
YOUR ANSWER : ?