Question #15: What will be the value of $keys after execution of the following code? 51% on 438 times asked
my $var; if (exists $var->{key1}->{key2}) { $var->{key1}->{key2} = 1; } my $keys = keys(%{$var});