Home »
MCQs »
Perl Programming MCQs
What will be the output of the following Perl code (1)?
29. What will be the output of the following Perl code?
$m = 2;
if ($m){
print "True";
}
else{
print "False";
}
- True
- False
- Error
- None of these
Answer: A) True