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

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

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

Consider the following program code:

@array = ("one", "two");

push(@array, "three");

shift(@array);

unshift(@array, "four");

pop(@array);

print($array[0]);

What is the output of this code?


A.

one


B.

two


C.

three


D.

four


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.