Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
4 15613Post New HP SAS Interview Questions
Explain me what's your biggest career mistake or failure? : insurance health
What are the important interfaces in hibernate?
What is match command? Where is it used in neo4j?
What is difference between nsnotification and delegate?
Does windows 10 include excel?
What are xml tools?
What does ** (double star/asterisk) and * (star/asterisk) do for parameters?
How to create a login account in ms sql server to access the database engine using "create login" statements?
Do we have validate write and validate field in form level?
Which is Better home cooked food or outside food ?
Define articulation point?
What are the shrinking and self-shrinking generators?
Which type of reactions did acetylene undergoes?
What is the difference between the application object and session object?
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,