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?
1911There 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 10885In 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 3324Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)
4 5987Finding of the 4 larger (bigger) numbers from the list like{1245,4587,2145,1163,29987,65783.....}
1 4059
What are main features 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.
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?
What is overriding in oop?
write a C++ program for booking using constructor and destructor.
Why do we use class in oops?
What is polymorphism and types?
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.
when to use 'mutable' keyword and when to use 'const cast' in c++
What is the fundamental idea of oop?
What is coupling in oops?
How to hide the base class functionality in Inheritance?
What is an interface in oop?
Can a destructor be called directly?
What is oops and its features?