what is the C++



what is the C++..

Answer / atasi jena

c++ is a object oriented programming language which provides different mechanism like inheritance, polymerphism, template, data abstraction over c.

Is This Answer Correct ?    11 Yes 0 No

Post New Answer

More C++ General Interview Questions

what are the events occur in intr activated on interrupt vector table

0 Answers   HGS,


What are the difference between reference variables and pointers in C++?

1 Answers  


Write a program to show polymorphism in C++?

0 Answers   Impetus, Verifone,


class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable

1 Answers  


What will i and j equal after the code below is executed? Explain your answer.

1 Answers  






What are the advantages of early binding?

0 Answers  


how to find the maximum of 10 numbers ?

5 Answers  


Explain public, protected, private in c++?

0 Answers  


What you mean by early binding and late binding? How it is related to dynamic binding?

1 Answers  


What issue do auto_ptr objects address?

2 Answers  


Should a constructor be public or private?

0 Answers  


What operators can you overload in c++?

0 Answers  


Categories