How to change a directory in perl?


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

Post New Answer

More CGI Perl Interview Questions

What does `new $cur->{LINK}' do? (Assume the current package has no new() function of its own.)

0 Answers  


Write the program to process a list of numbers.

0 Answers  


How to read from a pipeline with Perl

0 Answers  


Explain ivalue?

0 Answers  


Mention what is cpan?

0 Answers  






What does the q{ } operator do?

0 Answers  


Write an expression or perl script to identify the entered ip address is valid or not?

5 Answers   HCL,


What is chomp() operator/function?

0 Answers  


Explain the internal working of cgi

0 Answers  


We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?

0 Answers   AppLabs,


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  


Explain perl one-liner?

0 Answers  


Categories