Which web site will help the student to download the Java
mini Project ?
Answer Posted / shanth
123eng.com,File guru.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What syntax is used for grep() function?
How to disable the mod_perl from apache_server as i have used perlfect search on the site and its pagination is not working and the remedy is to disable the mod_perl.
Explain string comparison operators in perl.
Explain lexical variables.
What is the closure in PERL?
How would you ensure the re-use and maximum readability of your perl code?
How to implement a stack in Perl?
Explain ivalue?
You want to open and read data files with perl. How would you do that?
What is perl I used for?
What is the tk module?
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,
What is the difference between use and require in perl programming?
What does redo statement do in perl?
Why -w argument is used with perl programs?