Solved

Int I;for (I = 0; I <= 10; I++)

Question 20

Multiple Choice

int i;for (i = 0; i <= 10; i++)
System.out.println("*") ;
System.out.println("!") ;Which of the following is the initial expression in the for loop above?


A) i = 0;
B) i
C) i++
D) System.out.println("*") ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions