Consider the following program code:
$x = 5;
$y = 10;
while (++$x < 10 && ++$y < 15)
{
print ($x $y );
}
What is the result of executing this program code?
The code will output the following:
6 11 7 12 8 13 9 14 10 15
6 11 7 12 8 13 9 14 10 14
5 10 6 11 7 12 8 13 9 13
5 10 6 11 7 12 8 13 9 14
Submit