Explain substr function in perl?
No Answer is Posted For this Question
Be the First to Post Answer
Explain returning values from subroutines?
What are the different types of perl operators?
How do you open a file for writing?
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 is the importance of perl warnings? How do you turn them on?
What does the q{ } operator do?
Explain goto label, goto name, and goto expr?
write a Perl script to find a particular word in a paragraph???
What is it meants by '$_'?
Explain the difference between die and exit in perl?
What is perl dbi?
What is the Common Gateway Interface?