Home »
MCQs »
Perl Programming MCQs
Until loop in Perl is ___
77. Until loop in Perl is ___.
- Opposite of while loop.
- Used to execute code when condition is false
- Entry controlled loop
- All of these
Answer: D) All of these
Explanation:
Until loop in Perl is an entry-controlled loop with acts just opposite to while loop i.e., the code inside the loop will run if the condition inside it is false.