Explain lexical variables.
No Answer is Posted For this Question
Be the First to Post Answer
What is the closure in PERL?
What purpose does each of the following serve: -w, strict, - T ?
What is Perl?
Consider the following example #! /bin/perl use strict; sub sample { my @arr=(1,2,3,4); return @arr; } my ($a,$b,$c,$d) = &sample; print "$a\n$b\n$c\n$d\n"; In the above code, How can I get the $c without using the arguments such as $a,$b. I don't want to use any array to get the return values.
What does redo statement do in perl?
How to determine strings length in perl?
what is the difference between java and cgi?
How to find the length of an array in perl?
What are the various advantages and disadvantages of perl?
Can inheritance be used in perl?
There are two types of eval statements i.e. Eval expr and eval block. Explain them.
What are the options that can be used to avoid logic errors in perl?