What is encapsulation c#?
No Answer is Posted For this Question
Be the First to Post Answer
Can an interface inherit a class?
What is overriding in oop?
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
How Do you Code Composition and Aggregation in C++ ?
Is html an oop?
What are two types of polymorphism?
What is virtual Function.
What is the difference between the c++ & java?
What is encapsulation c#?
how to get the oracle certification? send me the answer
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?
Is oop better than procedural?