How will you declare a variable in perl?
No Answer is Posted For this Question
Be the First to Post Answer
What does 'do' statement do in perl?
How many loop control keywords are there in perl?
What is the difference between use and require in perl?
Why do you use only Perl when there a lot of more languages available in market like C, Java?
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 are the various uses of perl?
What is the use of strict?
Why we use "use lib $path"?
What is the use of command “use strict”?
what is the difference between java and cgi?
There are two types of eval statements i.e. Eval expr and eval block. Explain them.
What is the use of –w?