Define namespace.
Answer / beena
It is a feature in c++ to minimize name collisions in the global name space. This namespace keyword assigns a distinct name to a library that allows other libraries to use the same identifier names without creating any name collisions. Furthermore, the compiler uses the namespace signature for differentiating the definitions.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the difference between C and C++.
What is the purpose of a constructor? Destructor?
Can we call C++ OOPS? and Why
Can we use THIS Pointer in static function – Reason in C++?
What is C++11?
What's the value of the expression 5["abxdef"]?
Write a program to generate the Fibonocci Series in C++.
Name the operators that cannot be overloaded.
explain the term 'resource acquisition is initialization'?
What is data abstraction? How is it implemented in C++?
What are the advantages and disadvantages of B-star trees over Binary trees?
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.