How can you tell what shell you are running on unix system?
No Answer is Posted For this Question
Be the First to Post Answer
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What is the basic of c++?
How are virtual functions implemented 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 is the full form of india?
What methods can be overridden in java?
Write a function which takes a character array as input and reverses it in place.
2 Answers Lehman Brothers, Vision Infotech,
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
How one would use switch in a program?
Which sort does c++ use?
Can we inherit constructor in c++?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?