What is the output of this code? seenagape 11 years ago Consider the following program code:@arrayA = (10, 20, 30);@arrayB = @arrayA;$arrayB[1] = 40;print $arrayA[1];What is the output of this code? A.10 B.20 C.30 D.40 ← Previous question Next question →