what r the different type of function in perl ???
Answer / archana
http://perldoc.perl.org/index-functions.html
this page having all funtions in perl
| Is This Answer Correct ? | 3 Yes | 2 No |
Explain grooving and shortening of arrays and splicing of arrays?
How to disable the mod_perl from apache_server as i have used perlfect search on the site and its pagination is not working and the remedy is to disable the mod_perl.
Is perl compiler or interpreter?
Explain about the applications of perl?
Demonstrate subroutines in perl with a simple example.
What does length(%HASH) produce if you have thirty-seven random keys in a newly created hash?
How to code in perl to implement the tail function in unix?
Explain the difference between declarations of 'my' and 'local' variable scope 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.
What is automatic error handling in perl?
What are perl strings?
What is the difference between use and require in perl?