PHP MCQ PHP Basic MCQ Question #2354
MCQ Single Best Answer 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,215 views
Question Info
#2354Q ID
Not SetDifficulty
PHP Basic MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 3
  • B 1+2
  • C Error
  • D 12
Correct Answer: Option A

Explanation

The numbers inside the double quotes are considered as integers and not string, therefore the value 3 is printed and not 1+2.

Share This Question

Challenge a friend or share with your study group.