Q. what is the output of below program?
Code:
<?php $x = 4/5*3; $y = 1/.3; $x ^= $y; $y ^= $x; $x ^= $y; echo "$x, $y"; ?>
β
Correct Answer: (D)
3, 2
<?php $x = 4/5*3; $y = 1/.3; $x ^= $y; $y ^= $x; $x ^= $y; echo "$x, $y"; ?>
You must be Logged in to update hint/solution