difference between overloading and overridding
Answers were Sorted based on User's Feedback
Answer / priyanka agrawal
In overloading functions will have same name but different
parameters lists but in overloading functions must have
same name and same signature.
| Is This Answer Correct ? | 1 Yes | 4 No |
What polymorphism means?
Why do we use oops?
What is virtual function?where and when is it used?
Can destructor be overloaded?
Write a program to get the binary tree.
What are the main differences between procedure oriented languages and object oriented languages?
9 Answers IBM, Infosys, Wipro,
What is inheritance and how many types of inheritance?
WHAT'S THE OOPS BASIC OOPS CONCEPTS IN DOTNET
write a program to find 2 power of a 5digit number with out using big int and exponent ?
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.
Write a program in c++ to read two floating point numbers and find their sum and average.
What is constructor in oop?