What are the advantages of inheritance in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of prototyping?
What do you mean by abstraction. Explain your answer?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
Explain the concept of dynamic allocation of memory?
What are the advantages of using a pointer?
Do you know what is overriding?
Difference between Top down and bottom up approaches for a given project ?
14 Answers BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
How do you link a C++ program to C functions?
Give the difference between the type casting and automatic type conversion. Also tell a suitable C++ code to illustrate both.
What does '\r' and '\b' mean? Please explain with example.