What does undef function in perl?


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

Post New Answer

More CGI Perl Interview Questions

Explain the use of 'my' keyword in perl?

0 Answers  


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

0 Answers  


Difference between the variables in which chomp function work ?

0 Answers  


Explain goto label, goto name, and goto expr?

0 Answers  


How can the user execute a long command repeatedly without typing it again and again?

0 Answers  






Write the program to process a list of numbers.

0 Answers  


Write a simple regular expression to match an IP address, e-mail address, city-state-zipcode combination.

15 Answers  


You want to print the contents of an entire array. How would you do that?

0 Answers  


Write a program to concatenate the $firststring and $secondstring and result of these strings should be separated by a single space.

0 Answers  


Perl uses single or double quotes to surround a zero or more characters. Are the single(' ') or double quotes (" ") identical?

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 difference between die and exit in perl?

0 Answers   HCL,


Categories