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

What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference.
(Note : Pls ignore syntx errors)

public class One {
sop ("Into One--");
}
public class Two extends One{
sop ("Into Two--");
}
public class Home {
One a; Two t;
public static void main(argv[])
{
sop ("In Home--");
sop(One.a);
sop(Two.a);
sop(One.t);
sop(Two.t);
}
}

Answer Posted / guest

/.kt

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Difference between DurableSubscription and non- DurableSubscription?

2138


When a thread blocks on i/o?

1035


Are enterprise beans allowed to use thread.sleep()?

1109


Which textcomponent method is used to set a textcomponent to the read-only state?

1066


Should synchronization primitives be used on bean methods?

1007


To identify IDL language what mapping mechanism is used?

3892


How can I scroll through list of pages like the search results in google?

923


Difference between loadclass and class.forname?

995


What is a modular application?

1014


What restrictions are placed on the values of each case of a switch statement?

960


Do I need to import javlang package any time? Why ?

1038


Do we need to override service() method

1662


What is the difference between static and non-static with examples?

1869


What method is invoked to cause an object to begin executing as a separate thread?

978


Write a program to show synchronization?

1091