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 difference between jdbc and odbc?
How the JDBC application works?
Which interface is responsible for transaction management in jdbc?
What are the different types of JDBC drivers?
What are the new features available in jdbc 4.0?
Explain about the Try Block?
Can I get a null resultset?
What is a jdbc driver and how many jdbc drivers are available?
Is jdbc connection secure?
Write an sql to find all records having all numeric characters in a field ?
Explain about Join?
What is jdbc odbc bridge?
Does jdbc use ssl?
What is type 4 jdbc driver?
Which constraint cannot be specified as an explicit constraint and should be specified with the column only ?