CIW
1D0-437 · Question #2
Consider the following code: $_ = "New York"; @array2 = split(//); What is the value of $array2[0] after the code is executed?
The correct answer is D. "N". See the full explanation below for the reasoning.
Question
Consider the following code:
$_ = "New York"; @array2 = split(//); What is the value of $array2[0] after the code is executed?
Options
- A""
- B"N e w"
- C"NewYork"
- D"N"
How the community answered
(23 responses)- A4% (1)
- B4% (1)
- C9% (2)
- D83% (19)
Community Discussion
No community discussion yet for this question.