Consider the following code:
$_ = “New York”;
@array2 = split(//);
What is the value of $array2[0] after the code is executed?
A.
“”
B.
“N e w”
C.
“NewYork”
D.
“N”
Consider the following code:
$_ = “New York”;
@array2 = split(//);
What is the value of $array2[0] after the code is executed?
Consider the following code:
$_ = “New York”;
@array2 = split(//);
What is the value of $array2[0] after the code is executed?
A.
“”
B.
“N e w”
C.
“NewYork”
D.
“N”
A
D