@alpha = (a..z); print "Before splicing - @alphan";
splice (@alpha, 5, 3, "af".."ah"); print "After splicing - @alphan";
This code produces the following result Before splicing - a b c d e f g h i j k l m n o p q r s t u v w x y z After splicing - a b c d e af ag ah i j k l m n o p q r s t u v w x y z
Which of the following statement is correct about the above piece of code. (Multiple answers mighe be correct)
Reveal answer
Fill a bubble to check yourself