What is object oriented programming (oop)?
No Answer is Posted For this Question
Be the First to Post Answer
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
How do you decide which integer type to use?
How do you invoke a base member function from a derived class in which you have not overridden that function?
What is a literal in c++?
What is the difference between #import and #include?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
What is the difference between = and == in C?
20 Answers Christ University, Intel,
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
When do you call copy constructors?
What are stacks?
How new/delete differs from malloc()/free?
Find the second maximum in an array?