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?

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”



Leave a Reply 2

Your email address will not be published. Required fields are marked *