1.

What will be the output of the following PHP code ?
<?php
$s = 4;
$t = 8;
$s *= $t /= $s;
echo $s, $t;
?>

A. 82
B. 4
C. 8
D. Nothing
E. None of these
Answer» B. 4


Discussion

No Comment Found

Related MCQs