Is Java is 100% pure OOPS? Explain?

Answers were Sorted based on User's Feedback



Is Java is 100% pure OOPS? Explain?..

Answer / anand

No java isnt 100% pure OOPS coz if it were then everything
should be classes and objects, whereas java still has
primitive data type which violates the above said
statement...SmallTalk is the only 100% pure OOPS language

Is This Answer Correct ?    66 Yes 9 No

Is Java is 100% pure OOPS? Explain?..

Answer / guest

no

Is This Answer Correct ?    64 Yes 16 No

Is Java is 100% pure OOPS? Explain?..

Answer / prashant khot

No. Java is not 100 % Pune OOP because of following three
reasons:
1) It doesnot support Multiple inheritance.
2) It allows use of primitive data types which are not an
objects.
3) It allows static methods to call without creating the
instance. This disobeys OOPs concepts.

Is This Answer Correct ?    48 Yes 7 No

Is Java is 100% pure OOPS? Explain?..

Answer / priyanjan

Java is not 100% pure OOP,but 99.34%,because primitive data
types are not treated as object

Is This Answer Correct ?    27 Yes 10 No

Is Java is 100% pure OOPS? Explain?..

Answer / kruthi

Java is not pure OOPs because of Primitive data type and of
static keyword.

Is This Answer Correct ?    22 Yes 5 No

Is Java is 100% pure OOPS? Explain?..

Answer / muthusenthil

java is not 100% oops because of only reason it has static
keyword, according to oops and in real world we need an
object to perform a function but in java using class name
without an object we can perform function or call a method
this violates oops and real world reflection..

Is This Answer Correct ?    24 Yes 9 No

Is Java is 100% pure OOPS? Explain?..

Answer / vikas dwivedi

Yes, Java Is not pure object Oriented Lang.....Bcse of
primtive data type...java is 99.7% pure.

for details cntct..vikas.nice@gmail.com

Is This Answer Correct ?    12 Yes 5 No

Is Java is 100% pure OOPS? Explain?..

Answer / uttam lonkar

Java is not pure OOPs because of Primitive data type and of
static keyword.

Is This Answer Correct ?    5 Yes 0 No

Is Java is 100% pure OOPS? Explain?..

Answer / ajay

Java is not 100% pure OOP language because of:

1: Java doesn't support Multiple Inheritence directly.
2: We can call static methods and variables without
creating Object of class which is not supported by OOP.
3: Primitive data type which are not Object.

Those are the reasons why Java is not 100% pure language.

Is This Answer Correct ?    5 Yes 0 No

Is Java is 100% pure OOPS? Explain?..

Answer / sreevani

No, Java is not 100% pure OOPS. As it does not support the E-
Com server.

Is This Answer Correct ?    16 Yes 14 No

Post New Answer

More Core Java Interview Questions

How does the java compiler work?

0 Answers  


How do you sort in descending order in java using collections sort?

0 Answers  


Does constructor be static?

0 Answers  


What is bom encoding?

0 Answers  


What JNDI(Java Naming and Directory Interface) provides?

4 Answers  






Is void a keyword in java?

0 Answers  


Do you know how to reverse string in java?

0 Answers  


what is ststic with example

0 Answers   Wipro,


What is the largest number a double can hold?

0 Answers  


What are the features of junit?

0 Answers  


How many unicode characters are there?

0 Answers  


84. try { 85. ResourceConnection con = resourceFactory.getConnection(); 86. Results r = con.query(”GET INFO FROM CUSTOMER”); 87. info = r.getData(); 88. con.close(); 89. } catch (ResourceException re) { 90. errorLog.write(re.getMessage()); 91. } 92. return info; Which is true if a ResourceException is thrown on line 86? 1 Line 92 will not execute. 2 The connection will not be retrieved in line 85. 3 The resource connection will not be closed on line 88. 4 The enclosing method will throw an exception to its caller.

1 Answers  


Categories