Mention how many ways you can express string in Perl?
No Answer is Posted For this Question
Be the First to Post Answer
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 difference between exec and system?
What is the syntax used in Perl grep function?
How can we create perl programs in unix, windows nt, macintosh and os/2 ?
How do find the length of an array?
Explain gmtime() function in perl?
Explain ivalue?
What happens when you return a reference to a private variable?
write a perl script to find whether a given line of text is starting and ending with same word or not ???
Explain grooving and shortening of arrays?
What is perl pop array function?
How can you create anonymous subroutines?