-
-
-
-
-
-
Symbolic Reference in PERL
What is the Use of Symbolic Reference in PERL?
-
-
-
-
-
-
-
-
-
-
-
-
-
Explain the difference between "my" and "local" variable scope declarations. ?
Both of them are used to declare local variables.The variables declared with "my" can live only within the block it was defined and cannot get its visibility inherited functions called within that block, but one defined with "local" can live within the block and have its visibility in the functions called within that block.
-
Perl Interview Questions
Ans