1.

What will be the output of the following php code?
<?php
$n = 10;
$n1 = 12;
print $n . "+". $n1;
?>

A. 10
B. 12
C. 10+12
D. 12+10
E. Error
Answer» D. 12+10


Discussion

No Comment Found

Related MCQs