They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
1866There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?
4 10720In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}
1 3238Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)
4 5812Finding of the 4 larger (bigger) numbers from the list like{1245,4587,2145,1163,29987,65783.....}
1 3968
Can you inherit a private class?
Why do we use class?
What is constructor overloading in oop?
What is multilevel inheritance in oop?
Why do we use oops?
What is the full form of oops?
How oops is better than procedural?
What is the main feature of 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.
What is a function in oop?
What does sksksk mean in text slang?
What polymorphism means?
Why is static class not inherited?
#include
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).