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...


In which way does a Primitive data type is passed ?

Answers were Sorted based on User's Feedback



In which way does a Primitive data type is passed ?..

Answer / harsha

Primitive data types are 'passed by value'.

Is This Answer Correct ?    8 Yes 1 No

In which way does a Primitive data type is passed ?..

Answer / sandeep

Primitive data type are passed using wrapper classes. This
class provide us an object view of primitive types.
e.x.
Integer i=new Integer(3);

Is This Answer Correct ?    6 Yes 1 No

In which way does a Primitive data type is passed ?..

Answer / subha narayan mohapatra

all Primitive data types are passed by value.

Is This Answer Correct ?    3 Yes 0 No

In which way does a Primitive data type is passed ?..

Answer / sailendra.n.jena

primitive datatype are pass this way
class A
{
int x=7;
void disp(int z)
{
System.out.println(z);
}
}
class Test
{
public static void main(String args[])
{
int x=7;
A a=new A();
a.disp(x);
}
when u pass the primtive reference to this method only
address will transfer to the parameter which i have given
to the void disp(int z).After passing the reference
variable the other variable will pointing to that object &
collect the value of that object.

Is This Answer Correct ?    1 Yes 0 No

In which way does a Primitive data type is passed ?..

Answer / ismail

Primitive data types will passed be "Pass by Value"...!!!

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Core Java Interview Questions

what are the methods in object?

0 Answers   IBS,


How many bytes are there?

0 Answers  


Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.

3 Answers  


What method is used to specify a container's layout in java programming?

0 Answers  


What are namespaces in java?

0 Answers  


What is difference between ++ I and I ++ in java?

0 Answers  


Is java pure object oriented or not? if yes, give the valid reason.

13 Answers   Emphasis, NIIT, Syntel, Wipro,


Where is the singleton class used?

0 Answers   Cap Gemini,


How do you sort objects in java?

0 Answers  


Is it possible to instantiate the abstract class?

0 Answers  


Can we override private method in java?

0 Answers  


Explain what do you mean by functional overloading in java?

0 Answers   Maveric, Verifone,


Categories