What are the classes in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What do you understand by pure virtual function? Write about its use?
What are the conditions that have to be met for a condition to be an invariant of the class?
Adobe Interview & Adobe Placement Paper
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
Describe linked list using C++ with an example.
Who discovered c++?
Can char be a number c++?
How many types of modularization are there in c++?
Is c++ a dying language?
Define the process of error-handling in case of constructor failure?
Explain RAII (Resource Acquisition Is Initialization).
What are put and get pointers?