Multiple choice Which of the following does not print the size of the array @My_array = (1..10); print scalar @My_array $my_arr_size = @My_array print $my_arr_size print $#My_array print 0+@My_array print $#My_array + 1 Reveal answer Fill a bubble to check yourself C Correct answer Explanation Yes, It returns the maximum index of the array, i.e. one less than the size of the array.