COMPILER DESIGN

ADVANCED TOPICS IN COMPILER DESIGN

CODE GENERATION FOR OBJECT ORIENTED LANGUAGES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
A conditional loop is a loop which will repeat code until a condition is met:true or false?
A
True
B
False
C
Either A or B
D
None of the above
Explanation: 

Detailed explanation-1: -A “While” Loop is used to repeat a specific block of code an unknown number of times, until a condition is met.

Detailed explanation-2: -The repeat / until loop is a loop that executes a block of statements repeatedly, until a given condition evaluates to true . The condition will be re-evaluated at the end of each iteration of the loop, allowing code inside the loop to affect the condition in order to terminate it.

There is 1 question to complete.