What are the two different types of polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
What are the advantages of polymorphism?
why to use template classes in c++?
write knight tour problem which is present in datastructure
How do you explain polymorphism?
What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.
What is abstraction in oop?
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }
What is purpose of inheritance?
How can you overcome the diamond problem in inheritance?
Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345