What is the output of this code? seenagape 11 years ago Consider the following program code:$var = 10;package Alpha;$var = 20;{package Beta;$var = 30;}package Gamma;$var = 40;{print $var;}What is the output of this code? A.10 B.20 C.30 D.40 ← Previous question Next question →