Explain the meaning of closure in perl.


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

Post New Answer

More CGI Perl Interview Questions

How do I pass a command line argument in perl?

0 Answers  


How to connect with sqlserver from perl and how to display database table info?

0 Answers  


i have a folder called 'error' and in that, i have error log files which are generated by the build, now i want to findout the string 'error' from each log file and that error has to be copied into the another file called 'analysis'. how do you do this in perl?

5 Answers   HP,


Which feature of Perl provides code reusability ? Give any example of that feature.

1 Answers  


Why is it hard to call this function: sub y { "because" } ?

0 Answers  






What does the qx{ } operator do?

0 Answers  


you are required to replace a char in a string and store the number of replacements. How would you do that?

0 Answers  


What is automatic error handling in perl?

0 Answers  


When would you not use Perl for a project?

1 Answers   IBM,


Explain goto label, goto name, and goto expr?

0 Answers  


my @array=('data1','data2'); my @array1=('data1','data2'); my ($i,$k); $i=7; $k=7; while($i){ $array [++$#array] = 'ree'; $i--; print "@array"; } while($k){ push(@array1,'ree'); $k--; print "@array1"; } Are these two while loop are doing the same functionality ? What may be the difference?

1 Answers   A1 Technology,


Why Perl aliases are considered to be faster than references?

0 Answers  


Categories