What is cohesion in oop?
No Answer is Posted For this Question
Be the First to Post Answer
What is polymorphism and its types?
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?
what is the drawback of classical methods in oops?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
What are the important components of cohesion?
WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
Which language is not a true object oriented programming language?
What are the different forms of polymorphism??
Write A Program using Single and Multiple Inheritance.
Why it is called runtime polymorphism?
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }