Question: Identify all the errors in the following repetition statements. Some errors are syntactical while others are logical (e.g., infinite loops). a. for (int i =

Identify all the errors in the following repetition statements. Some errors are syntactical while others are logical (e.g., infinite loops).
a. for (int i = 10; i > 0; i++) {
x = y;
a = b;
}
b. int sum = 0;
Scanner scanner = new Scanner(System.in);
do {
num = scanner.nextInt();
sum += num;
} until (sum > 10000);
c. while (x < 1 && x > 10) {
a = b;
}
d. while (a == b) ;
{
a = b;
x = y;
}
e. for (int i = 1.0; i <= 2.0; i += 0.1) {
x = y;
a = b;
}

Step by Step Solution

3.44 Rating (163 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

a for int i 10 i 0 i x y a b There is a logical error it w... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Document Format (1 attachment)

Word file Icon

1013-C-S-O-S (683).docx

120 KBs Word File

Students Have Also Explored These Related Operating System Questions!