Home »
MCQs »
Perl Programming MCQs
Is the Redo operator in Perl used?
82. Is the Redo operator in Perl used?
- Create a loop
- Jump the flow to the given label skipping the current block execution
- Repeat current block evaluation
- All of these
Answer: B) Jump the flow to the given label skipping the current block execution
Explanation:
The redo operator is used to Jump the flow to the given label skipping the current block execution.