C
CIW Perl Fundamentals
99 Questions
Question No. 1
Consider the following program code
%hash = ("small" -> "Boz",
"medium" => "16oz",
"large" => "32oz");
@keys = sort(keys(%hash));
for ($i = 0; $i < 3; $i++) {
print("$hash{$keys[$i]}\n");
}
What is the result of executing this program code?
Choose the correct option from the given list.
01 / 99