Computer Science, asked by parth3549, 5 months ago

Int m=5, n=10;

While (n>=1)

{ System.out.printIn(m*n);

n- - ;

}

b) Write the output of above loop​

Answers

Answered by sr4991stangelsrohini
1

Explanation:

Analyze the following code. Is count < 100 always true, always false, or sometimes true or sometimes false at Point A, Point B, and Point C?

int count = 0;

while (count < 100) {

// Point A

System.out.println("Welcome to Java!");

count++;

// Point B

}

// Point C

Similar questions