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

Given:
11. public static void main(String[] args) {
12. Integer i = uew Integer(1) + new Integer(2);
13. switch(i) {
14. case 3: System.out.println(”three”); break;
15. default: System.out.println(”other”); break;
16. }
17. }
‘What is the result?
1 three
2 other
3 An exception is thrown at runtime.
4 Compilation fails because of an error on
line 12.

Answer Posted / manikandan

In the line 12 .jus think new Integer(1) will result 1 and
new Integer(2) will result 2 so 1+2=3 which is stored in a i.

so the line 12 can b written as a Integer i=1+3;

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can a main method be declared final?

1105


What is the major advantage of external iteration over internal iteration?

1155


Explain the differences between abstraction and encapsulation?

1107


What about static nested classes in java?

1194


Which variables are stored in stack?

954


Is arraylist ordered in java?

1176


Does importing a package imports its sub-packages as well in java?

1019


What will be the initial value of an object reference which is defined as an instance variable?

1197


Can a final variable be initialized in constructor?

1024


What is polymorphism in java? What are the kinds of polymorphism?

1120


What are the classes of java?

1023


What is the difference between call by reference and call by pointer?

1016


What is method and methodology?

1160


What do you mean by scope of variable?

944


What are the Static and Dynamic Variables? Differentiate them.

1161