Asked by Shalini Ballur on May 17, 2024

verifed

Verified

ch = inFile.next() .charAt() ;while (inFile.hasNext() )
{
System.out.println(ch) ;
Ch = inFile.next() .charAt() ;
}The above code is an example of a(n) ____ loop.

A) sentinel-controlled
B) flag-controlled
C) EOF-controlled
D) counter-controlled

EOF-Controlled

Refers to a loop or control structure that continues operation until reaching the End of File (EOF) marker in data processing.

  • Identify different types of loops based on their control mechanism.
verifed

Verified Answer

AJ
Abraham Jimenez

May 19, 2024

Final Answer :
C
Explanation :
The loop is controlled by the presence of the end-of-file character, which is detected using the hasNext() method. Therefore, it is an EOF-controlled loop.