1.

What will be the output of the following PHP code ?
<?php
$num = 10;
$num = ($num + 15)++;
echo $num;
?>

A. 10
B. 15
C. Error
D. 16
E. 11
Answer» D. 16


Discussion

No Comment Found

Related MCQs