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

is java pure object oriented or not ?

Answer Posted / arun kumar samal

no, java is not pure object oriented language due to in java
the primitives data
types(byte,short,int,long,float,double,char,void)are not
objects.to use this type we need each corresponding Wapper
implementation.
e.g:
class A{
Integer i;
public static void main(String... s){
A a=new A();
a.i=new Integer(10);//Boxing before javaSE 5.0
a.i=10;//AutoBoxing from javaSE5.0
}

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is metadata in jdbc?

1072


Explain about the drive manager class working?

1178


What is benefit of using preparedstatement in java?

971


What is executequery in java?

943


What are four types of JDBC driver?

1198


What is the difference between jdbc and odbc?

1023


What is an SQL Locator?

1194


What are different parts of a url?

1051


What are the new features available in jdbc 4.0?

1013


What is JDBC Batch Processing and what are it’s benefits?

1077


Explain how data flows from view to db and reverse

2085


What is a merge field?

987


What are the differences between stored procedure and functions?

1072


What is a jdbc connection string?

987


What is JDBC PreparedStatement?

1010