1.

What will be the output of the following PHP code ?
<?php
$p = 22;
$q = 5;
$r = 4;
echo $p % $q % $r;
?>

A. 22
B. 5
C. 4
D. 2
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs