Question #27: What will be the value of $size after executing the following code?
my @a = (0, 1, 2);
$#a = 0;
my $size = @a;
Question #27: What will be the value of $size after executing the following code?
my @a = (0, 1, 2);
$#a = 0;
my $size = @a;