T
Q. What will be the output of the following Perl code?
Code:
$a = 8;
until ($a <= 7){
print "Value of a = $a\n";
$a = $a - 1;
}
until ($a <= 7){
print "Value of a = $a\n";
$a = $a - 1;
}
- Correct Answer - Option(A)
- Views: 174
- Filed under category Perl
Discusssion
Login to discuss.