Why java is not 100% object oriented language?



Why java is not 100% object oriented language?..

Answer / Mohammad Mohsin

Java is an Object-Oriented Programming (OOP) language, but it also provides features that are not strictly OOP, such as primitive data types and some aspects of procedural programming. However, these features do not make Java any less object-oriented.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More J2EE Interview Questions

What does j2ee stand for?

1 Answers  


Why tomcat is used in java?

1 Answers  


Is string an object in java?

1 Answers  


What is j2ee explain the component of j2ee application?

1 Answers  


Diffrence between arraylist and hashmap

3 Answers   Oracle,


What is the difference between session bean and entity bean ?

1 Answers  


What is frame in java?

1 Answers  


Is visual studio good for java?

1 Answers  


What is the description for expression element?

1 Answers  


What is external entity?

1 Answers  


Why is java used?

1 Answers  


Whats the O/p of the below code snippet ? And explain how does it imply the concept of call-by-value/call-by reference. (PS : Pls ignore syntax errors) public class One { public oneA(){ sop ("Into One--");} } public class Two extends One{ public twoT(){ sop ("Into Two--"); } } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(a.oneA()); sop(t.oneA()); sop(a.twoT()); sop(t.twoT()); } }

4 Answers   Wipro,


Categories