Q. What will be the output of the following Perl code?
Code:
$m = 2;
if ($m){
print "True";
}
else{
print "False";
}
β
Correct Answer: (A)
True
$m = 2;
if ($m){
print "True";
}
else{
print "False";
}
You must be Logged in to update hint/solution