Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How many ways can an argument be passed to a subroutine?

Answers were Sorted based on User's Feedback



How many ways can an argument be passed to a subroutine?..

Answer / janet

An argument can be passed in two ways. They are passing by
value and passing by reference.
Passing by value: This method copies the value of an
argument in to the formal parameters of the subroutine.
Passing by reference: In this method, a reference to an
argument(not the value of the argument) is passed to the
parameter.

Is This Answer Correct ?    14 Yes 2 No

How many ways can an argument be passed to a subroutine?..

Answer / vijayakumar chinnasamy

In java the arguments are passed by pass by value . Using
this pass by value way u can pass both primitive and object
type values.

Is This Answer Correct ?    6 Yes 1 No

How many ways can an argument be passed to a subroutine?..

Answer / samborn pen

An argument can be passed in two ways. They
are passing by value and passing by reference. Passing by
value: This method copies the value of an argument into the
formal parameter of the subroutine. Passing by reference: In
this method, a reference to an argument (not the value of
the argument) is passed to the parameter.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

what is difference between global methods and local methods?

1 Answers  


What's the base class in java from which all classes are derived?

0 Answers  


Name the methods that used to get and set the text label displayed by a Buttonobject?

1 Answers  


What is the difference between final, finally and finalize() in java?

0 Answers  


Can we override a variable in java?

0 Answers  


What happens if we don’t override run method ?

0 Answers  


How to prevent a field from serialization ?

2 Answers  


Why isn’t there operator overloading?

0 Answers  


Is math an abstract class in java?

0 Answers  


Why do we use threads in java?

0 Answers  


What is a subsequence of a string?

0 Answers  


The following program is Overloading or Overriding? public class PolymorphismEx { public int sampleMethod(int a) { return a; } public String sampleMethod(int a) { return "Is it Overloading or Overriding???"; } }

4 Answers   Ness Technologies, TCS,


Categories