1.

What will be the output of the following PHP code ?
<?php
$one1 = 1;
$nine9 = 9;
$eight8 = 8;
echo $nine9 + $eight8 / $one1 - 2;
?>

A. 1
B. 15
C. 9
D. 8
E. Error
Answer» C. 9


Discussion

No Comment Found

Related MCQs