A
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";
?>
$x = 4/5*3;
$y = 1/.3;
$x ^= $y;
$y ^= $x;
$x ^= $y;
echo "$x, $y";
?>
- Correct Answer - Option(D)
- Views: 18
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.