Answer Posted / taher
Java is not purely Object Oriented Programming language
since it does not support the concept naming "Multiple
Inheritance".And other reason we can say is it still uses
data types like int,float,long etc.. with out creating objects.
These are the obvious reasons with which we can say it is
not "Purely Object Oriented Language" but "Strictly Object
Oriented Language" since it is supporting max of the concepts.
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
i got a backdoor offer in process global,Bangalore..Can i work with it?
what are the ways in which a constructors can be called?
Can bst contain duplicates?
What is destructor in oop?
What is the important feature of inheritance?
Can we create object of interface?
What is inheritance and how many types of inheritance?
What is polymorphism in oop example?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is encapsulation c#?
What is inheritance in simple words?
Explain the advantages of inheritance.
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
How is class defined?