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 |
what are the events occur in intr activated on interrupt vector table
What are the difference between reference variables and pointers in C++?
Write a program to show polymorphism in C++?
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
What will i and j equal after the code below is executed? Explain your answer.
What are the advantages of early binding?
how to find the maximum of 10 numbers ?
Explain public, protected, private in c++?
What you mean by early binding and late binding? How it is related to dynamic binding?
What issue do auto_ptr objects address?
Should a constructor be public or private?
What operators can you overload in c++?