A
Q. What will be the output of the following Perl code?
Code:
$m = 2;
if ($m){
print "True";
}
else{
print "False";
}
if ($m){
print "True";
}
else{
print "False";
}
- Correct Answer - Option(A)
- Views: 18
- Filed under category Perl
- Hashtags:
Discusssion
Login to discuss.