1.

What will be the output of the following PHP code ?
<?php
$str1 = "Hello ";
$str2 = "Interview ";
$str3 = "Mania ";
$str1 .= $str2 .= $str3 ;
echo $str1;
echo $str2;
?>

A. Hello Interview Mania
B. Interview Mania
C. Hello Interview Mania Interview Mania
D. Interview Mania Interview Mania
E. None of these
Answer» D. Interview Mania Interview Mania


Discussion

No Comment Found

Related MCQs