Consider a part of a loop as shown below.


		
					

Loading

โœช Choose the correct option.

Consider a part of a loop as shown below.


for (i = 0; i < = 10000; i++)

{

:

:

if (error < 0.005)

break;

}


The above loop will?

A. always run for 10,000 times
B. will never run for 10,000 times
C. may or may not run for 10,000 times
D. None of these