what is the main difference between c and c++?
Answer Posted / harsha
C has just the letter C... while C++ has more than just C...
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is difference between data abstraction and encapsulation?
What is abstract class in oop?
What is constructor in oop?
What is inheritance in oop?
What does enum stand for?
What is an interface in oop?
What is the difference between abstraction and polymorphism?
When not to use object oriented programming?
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.
Can main method override?
What is polymorphism what are the different types of polymorphism?
Explain the concepts involved in Object Oriented programming.
What are objects in oop?
What is meant by multiple inheritance?
Is oop better than procedural?