What are the OOPS concepts?
Answer Posted / mathivanan
The following are Object Oriented Programming Concepts..
1. Class
2. Objcet
3. Reusability
4. Inheritance
5. Polymorphism
6. Data Encapsulation
7. Data Abstarction
8. Interfaces
9. Message Passing
| Is This Answer Correct ? | 80 Yes | 33 No |
Post New Answer View All Answers
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
Can an interface inherit a class?
What is object in oop with example?
What is the problem with multiple inheritance?
What is overriding in oop?
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.
Get me an image implementation program.
What is the difference between a constructor and a destructor?
How is polymorphism achieved?
What is new keyword in oops?
Can we create object of interface?
What is abstraction in oops with example?
Why is polymorphism used?
write knight tour problem which is present in datastructure