1.

What will be the output of the following PHP code ?
<?php
$k = 4;
if (--$k == 4 || $k xor --$k)
{
echo $k;
}
?>

A. Error
B. 0
C. 4
D. 44
E. None of these
Answer» C. 4


Discussion

No Comment Found

Related MCQs