What is perl pop array function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More CGI Perl Interview Questions

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.

2 Answers  


Define print() function in perl?

0 Answers  


What are the various flags/arguments that can be used while executing a perl program?

0 Answers  


What is the use of command “use strict”?

0 Answers  


Why -w argument is used with perl programs?

0 Answers  


When does circular reference occur?

0 Answers  


What are the different instances used in cgi overhead?

0 Answers  


What are the different types of perl operators?

0 Answers  


How does polymorphism work in perl?

0 Answers  


Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?

0 Answers  


How to determine strings length in perl?

0 Answers  


How will you get the count of parameters passed to a perl subroutine?

0 Answers  


Categories