CIW PERL FUNDAMENTALS 1D0-437 Question # 29 Topic 3 Discussion

CIW PERL FUNDAMENTALS 1D0-437 Question # 29 Topic 3 Discussion

1D0-437 Exam Topic 3 Question 29 Discussion:
Question #: 29
Topic #: 3

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?


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


Get Premium 1D0-437 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.