Zusammenfassung der Ressource
Frage 1
Frage
Consider the following perl code below. Label the function from which $x value will be used at specified points (Ex. sub a, sub b, sub c, or main).
Antworten
-
sub a
-
sub a
-
main
-
sub c
-
sub c
-
main
Frage 2
Frage
Consider the following Perl code below. What will be the output?
Antworten
-
5
-
6
-
2
-
3
-
1, 10
-
10, 11
-
6, 11
-
1, 11
-
1
-
5
-
6
-
7