STL (140)
OOPS (873)
C++ General (2409) You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so
1 3892I am DeePu sotware engineer working with EMC corporation ,recently I had attended mcafee interview . Their questions were at heights of stupidity , I don't know what they want , I am a developer with 4 year experienced .I am listing the questions asked 1:What is the flag in g++ to avoid structure padding 2:In wht order parameters are passed to stack 3:How you will edit code segment of an exe
1 7205class 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 8042
What are the uses of c++ in the real world?
Which is best c++ or java?
What is java and c++?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
Difference between function overloading and function overriding.
What are oops functions?
Why do we use polymorphism in oops?
Is c the same as c++?
How to implement is-a and has-a class relationships?
What is static function? Explain with an example
Write a Program to find the largest of 4 no using macros.
Who wrote stl?
Explain the difference between c++ and java.
If class D is derived from a base class B
How does stack look in function calls? Write a recursive function call, how will the stack look like?