Does windows 10 come with a word processing program?
What is the dc grounding system and what is diff between AC/DC grounding system?
What is the difference between rational rose and QTP?
Write the definition of the duality theorem?
How to fight Inflation and what is the current Indian scenario about Inflation?
What is interceptor in Struts2?
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 are the different types of qtp test assets and their extensions?
Is swift better than c++?
How to improve the cache performance? : .NET Architecture
Explain EAV Concept in magento
What is the tree in r?
who is the judge in case of the auditor has raised an NCR against an auditee? who should decide weather this NCR is acceptable and the auditee has to accept?
How to return a view from route in laravel?
Is javascript multi-threaded or single-threaded?