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 =
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
a for int i 10 i 0 i x y a b There is a logical error it w... View full answer
Get step-by-step solutions from verified subject matter experts
Document Format (1 attachment)
1013-C-S-O-S (683).docx
120 KBs Word File
