📚 Practice Mode

Java and Perl Programming Concepts Quiz

Learn at your own pace with hints and detailed explanations

1 / 14
Multiple Choice

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

  1. undef
  2. 0
  3. 1
  4. 2