Question: The program below causes infinite loop. How do we fix the program: public class MysteryNums { public static void main ( String [ ] args
The program below causes infinite loop. How do we fix the program:
public class MysteryNums
public static void mainString args
for int i ; i ; i
System.out.printlni;
Choose all that apply
The forloop does not have curly brackets covering the body that has the System.out.println statement, we should add them
The iteration i starts from and keeps decreasing to negative infinity and that causes the conditiontest will never be false, we should change the initiation and conditiontest to leave a door out for the loop. For example, change the initiation to i and conditiontest to i
The iteration i starts from and keeps decreasing to negative infinity and that causes the conditiontest will never be false, we should change the update to leave a door out for the loop. For example, change the update to i instead of i
There is nothing that needs to fix. We can wait for the computer to crash and no infinite loop anymore
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
