Computer Applications

How many times the following message will be printed?

do
{
System.out.println("Hello");
}
ch++;
while(ch <= 1);
  1. 1
  2. Error in Code
  3. 2

Java Iterative Stmts

22 Likes

Answer

Error in Code

Answered By

4 Likes


Related Questions