Can you assign multiple query result rows to a variable?
What is space character in java?
What does seeding a database mean?
Why it is called runtime polymorphism?
If anyone have attended interview with deloitte for the post of senior manual test engineer. Please share the interview process and the questions asked. How to prepare for the interview. Thanks in advance
What are the two most abundant elements in the universe?
What is the minimum number of nodes that a binary tree can have?
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 a matrix in ssrs?
Hi friends, I'm final year mechanical engineering student.Next week i have a campus interview from mando india ltd company.I've prepared aps and reasoning questions well.any one of you guide me to prepare technical questions.kindly give some idea about overall question pattern.
What is powerpoint presentation ppt?
What is angular 7? How is it different from angularjs?
What persistent storage core data uses to save data?
State difference between proof of stake and proof of work?
How will you get all the keys from the dictionary?