What is polymorphism and its types?
No Answer is Posted For this Question
Be the First to Post Answer
What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?
What do you mean by pure virtual functions?
What is object and class in oops?
if u write a class do u write Assignment operator and copy constructor
What is static in oop?
which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.
sir plz send me a set of questions that been frequently held in written examination during campus selection.
What is the difference between procedural programming and oops?
What is super in oop?
What are virtual functions?
What is the difference between and interface and an abstract class ?
4 Answers IBM, Infosys, Ness Technologies,
What will happen when the following code is run: int x; while(x<100) { cout<<x; x++; } 1) The computer will output "0123...99" 2) The computer will output "0123...100" 3) The output is undefined