🎴 Flashcard Mode

Java Programming Fundamentals and Core Concepts

Card1 / 15
Mastered0
Review0
QuestionClick to flip

Which type of loop in Java executes once, even though the initial condition is false?

AnswerClick to flip back
A
Do while loop
💡 Explanation:

This is the correct option because while loop is at the the bottom of the block of code, so the block gets executed atleast one time irrespective of the condition.

Change Mode