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;
}
β
Correct Answer: (A)
Value of a = 8