PrepAway - Latest Free Exam Questions & Answers

What is the result of executing this program code?

Consider the following program code:
$x = 5;
$y = 10;
while(++$x < 10 && ++$y < 15)
{
print ($x $y );
}
print ($x $y );
What is the result of executing this program code?

PrepAway - Latest Free Exam Questions & Answers

A.
The code will output the following:
6 11 7 12 8 13 9 14 10 15

B.
The code will output the following:
6 11 7 12 8 13 9 14 10 14

C.
The code will output the following:
5 10 6 11 7 12 8 13 9 13

D.
The code will output the following:
5 10 6 11 7 12 8 13 9 14


Leave a Reply