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.
No Answer is Posted For this Question
Be the First to Post Answer
What is abstraction encapsulation?
What is the point of polymorphism?
why c++ is called OOPS? waht is inherutance? what is compiler?
Name an advantage of linked list over array?
When will a constructor executed?
What is Dynamic Polymorphism?
143.what is oops principles?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
what type of question are asked in thoughtworks pair programming round ?
what are the characteristics of oops?
1. Define a class.
Why is polymorphism used?