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
What is meant by connection string?
What is metadata in jdbc?
Can I use JDBC to execute non-standard features that my DBMS provides?
please tell me the name and url path for type-4 driver ?
Can we return resultset in java?
How do you determine the sensitivity of the ResultSet object?
Explain about Join?
Where is jdbc url mysql?
How can I write to the log used by DriverManager and JDBC drivers?
What are the higher level apis under development on top of jdbc currently?
What is jdbc vs odbc?
How do java applications access the database using jdbc?
Which interface is responsible for transaction management in jdbc?
What protocol does jdbc use?
How will you perform truncation using JDBC?