KnowledgeBoat Logo

Computer Applications

How many times the following body of loop will execute?

for(int a = 1; a <= 10; a++)
{
System.out.println(a);
}
  1. 0
  2. 9
  3. 10

Java Iterative Stmts

16 Likes

Answer

10

Answered By

1 Like


Related Questions