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?
1921There 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 10908In 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 3331Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)
4 6013Finding of the 4 larger (bigger) numbers from the list like{1245,4587,2145,1163,29987,65783.....}
1 4070
What is an interface in oop?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
Can we create object of interface?
What are the types of abstraction?
What is object and example?
What is multilevel inheritance?
what is the drawback of classical methods in oops?
What is object and class in oops?
Where is pseudocode used?
Get me a number puzzle game-program
What is polymorphism oop?
What is new keyword in oops?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box
How to hide the base class functionality in Inheritance?