What is OOPs
Answers were Sorted based on User's Feedback
Answer / tagore
OOPS MEANS OBJECT ORIENTED PROGRAMMING SYNOPSIS. . HERE
SYNOPIS NOTHING BUT CONCEPTS.
| Is This Answer Correct ? | 0 Yes | 1 No |
. 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?
what is upcasting in C++?
What is a forward referencing and when should it be used?
why we cant create array of refrences
When is the destructor called?
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
What is a node class?
Define copy constructor.
Give a very good method to count the number of ones in a "n" (e.g. 32) bit number.
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
Can I create my own functions in c++?