Question #32: What will be the value of $count after executing the following code? 41% on 143 times asked
my %hash = (a => 1, b => 2); my $count = 0; while (my ($key, $value) = each(%hash)) { $count++ if $value == keys(%hash) }