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 are the packages are used in jdbc?
What are drivers available?
What is JDBC DataSource and what are it’s benefits?
What do you mean by two phase commits?
What is the return type of execute, executequery and executeupdate?
How are jdbc statements used?
What is the execute method in java?
Which constraint cannot be specified as an explicit constraint and should be specified with the column only ?
Explain jdbc savepoint?
What is JDBC RowSet? What are different types of RowSet?
What is jdbc explain?
What is an encrypted internet connection?
Why would you use setautocommit(false) in jdbc?
How can you load the drivers?
What is the different between ResultSet and RowSet?