Google News
logo
Perl - Quiz(MCQ)
Which of the following statement expects the expression to return a label name and then jumps to that labeled statement?
A)
goto EXPR
B)
goto &NAME
C)
goto LABEL
D)
None of the above.

Correct Answer :   goto EXPR


Explanation : The goto EXPR form is just a generalization of goto LABEL. It expects the expression to return a label name and then jumps to that labeled statement.

Advertisement