What will be the value of $size after executing the following code?my @a = (0, 1, 2);$#a = 0;my $size = @a;
Reveal answer
Fill a bubble to check yourself
What will be the value of $size after executing the following code?my @a = (0, 1, 2);$#a = 0;my $size = @a;