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