What are the accounting entries for billing, PGI, Stock Transfer order, Excise invoice, Customer payment?
1 10064What are the differences between export sales and deemed export sales, explain with all related configuration steps?
2 15390In a scenario where credit check is active for all customers and company wants to exclude a customer from credit check on a special case, how to do this?
2 6532What is the control for billing output issue only after accounting entries/released to accounting i.e. if there any error output will not trigger?
1 5871Deloitte KPMG PwC and Ernst & Young – Big 4 Interview Questions 1. What accomplishment are you most proud of?
1697What are accounting entries for STO, Sub Contracting and Consignment? Which transaction keys are hit during these processess?
1 6887Post New PWC Interview Questions
Highlight main points of Union Budget 2017?
Can you please explain the difference between hub and a switch?
how to test on design and style in software?
what is the best transformer oil breakdown voltage?
How to upgrade the latest patches in weblogic?
Define time invariant system.
What are the benefits of geophysics?
Mention in simple terms what is the difference between asset, equity, and liabilities?
What is b/w statistics?
What is a Purchasing Organization ?
What is the purpose of a document type? How does it apply to a pr/ po?
How do you analyze data in excel?
Describe HDFS Federation?
self supporting course and sandwich course are same
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,