How we test an ERP products? and wat approach we will fallows and wat r the tools avaliable for ERP testing?
2 14216What is severiety and priority of the bug?how do they effect u to report the defect in the builds?
4 9482I have 1 gram of Diphenylamine and want to make a 10,000 or 1000 ppm solution in methanol. How do I make this?
9 16481Post New Midas Technologies Interview Questions
What are the rules required for soap service?
Sr-90, a radioactive isotope, is a major product of an atomic bomb explosion. It has a half life of 28.1 year. Calculate the first order rate constant for this nuclear decay and the fraction of 90Sr that remains after 10 half lives?
What are the difference between python and java?
What parts of the html_ajax api are stable?
Explain about block scope in c?
Which is faster linq or lambda?
What is mysql community edition?
How do I search in terminal?
What role will Generative AI play in autonomous systems?
What is a deadlock and mention how it can be resolved?
What is the meaning of text wrapping?
Differences between version 7.x and 8.x.
What are the important algorithms Tensorflow supports?
Is DES available in software?
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,