1.

What will be the output of the following PHP code ?<?php$p = 20;$q = 10;if ($p || ($q = $p + 10)) { echo "True";}echo $q;?>

A. 10
B. 20
C. True
D. 10True
E. True10
Answer» F.


Discussion

No Comment Found