Explain '->' in perl?


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

Post New Answer

More CGI Perl Interview Questions

what are steps to do to lock the sony ericsson mobile with password?

0 Answers  


What does the qx{ } operator do?

0 Answers  


How would you ensure the re-use and maximum readability of your perl code?

0 Answers  


package MYCALC; use Exporter; our @EXPORT = (); our @ISA = qw(Exporter); our @EXPORT_OK = qw(addition multi); our %EXPORT_TAGS = (DEFAULT => [qw(&addition)],Both => [qw(&addition & +multi)]); sub addition { return $_[0] + $_[1]; } sub multi { return $_[0] * $_[1]; } 1; Program: use strict; use warnings; my @list = qw (2 2); use Module qw(:DEFAULT); print addition(@list),"\n"; Above coding is my module MYCALC and the program which using this module, I have not exported any function using @EXPORT, but I have used the DEFAULT in %EXPORT_TAGS with the function addition, when I call this function from the main it says the error as,

0 Answers  


What is the different between array and hash in perl programming?

0 Answers  






What is the tk module?

0 Answers  


how to install a package in perl ????

2 Answers  


what are the three groups involved in information sharing?

0 Answers  


Remove the duplicate data from @array=(“perl”,”php”,”perl”,”asp”)

0 Answers  


How to convert strings into an array in perl?

0 Answers  


What happens when you return a reference to a private variable?

0 Answers  


What are the steps involved in configuring a server using cgi programming?

0 Answers  


Categories