Solved

What Kind of Loop Is This: Response = Keyboard

Question 74

Multiple Choice

What kind of loop is this: response = keyboard.nextInt() ;
While (response == 1)
{
    System.out.print ("Enter 1 to continue; 0 to stop") ;
    response = keyboard.nextInt() ;
}


A) posttest
B) definite
C) event-driven
D) counted

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions