What is posix in perl?
What are hashes?
What are perl strings?
What does this symbol mean '->'?
Why do you use Perl?
How to find out the version of PERL being installed on your LINUX machine.
Write an expression or perl script to identify the entered ip address is valid or not?
How can you create anonymous subroutines?
How can you use Perl warnings and what is the importance to use them?
How will you access an element of a perl array?
If you want to empty an array then how would you do that?
What is the use of -w, -t and strict in 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.