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 |
What does j2ee stand for?
Why tomcat is used in java?
Is string an object in java?
What is j2ee explain the component of j2ee application?
Diffrence between arraylist and hashmap
What is the difference between session bean and entity bean ?
What is frame in java?
Is visual studio good for java?
What is the description for expression element?
What is external entity?
Why is java used?
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()); } }