What are the advantages and disadvantages of B-star trees over Binary trees?
No Answer is Posted For this Question
Be the First to Post Answer
It is possible to build a C++ compiler on top of a C compiler. How would you do this?
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
Define type casting in C++.
Write a syntax and purpose of switch statement.
How can you force the compiler to not generate them?
When would you choose to return an error code rather than throw an exception?
How will you execute a stack using a priority queue? (Push and pop should be in O (1)).
What does it mean to declare a member function as static in C++?
What is a COPY CONSTRUCTOR and when is it called?
Can we provide one default constructor for our class?
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
Explain function prototypes in C++.