🎴 Flashcard Mode
COBOL and ABAP Programming Quiz
Card1 / 20
Mastered0
Review0
QuestionClick to flip
The COBOL PERFORM loop is the equivalent of which of the following statements found in Java or C++ ?
AnswerClick to flip back
A
DO WHILE
💡 Explanation:
The COBOL PERFORM statement, especially when used with the UNTIL phrase, functions as a conditional loop. This is equivalent to DO WHILE or while loops in Java or C++. IF is a conditional branch, METHOD is a function definition, and FOR is a different loop structure.