Why is static class not inherited?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between data abstraction and encapsulation?
What is the difference between abstraction and polymorphism?
Can we have inheritance without polymorphism?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }
What is encapsulation with example?
what's the basic's in dot net
what are the disadvantages of C++?
25 Answers ATS, Infosys, UNI, Wipro,
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
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 method cannot be overridden?
What is encapsulation example?