Consider the following program code:
%_Nifty = (one, two, three, four);
@NiftyKeys = sort(keys(%_Nifty));
foreach(@NiftyKeys)
{
print ($_Nifty{$_} . );
}
What is the result of executing this program code?
- The code will output the following:
one three - The code will output the following:
four two - The code will output the following:
two four - The code will output the following:
four one three two
Reveal Solution Next Question