Single Choice
Not Set
QWhat will be the output of the following php code?
< ?php
$num = "1";
$num1 = "2";
print $num+$num1 ;
?>
ID: #2354
PHP Basic MCQ
1,235 views
Question Info
#2354Q ID
Not SetDifficulty
PHP Basic MCQTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
The numbers inside the double quotes are considered as integers and not string, therefore the value 3 is printed and not 1+2.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic