Question 1:
Illustrate out the Abstract data type for Stack. Write down a C++ program to execute Towers of Hanoi using stack ADT?
Question 2:
What does throw; (devoid of an exception object after the throw keyword) mean? Where would we employ it?
Question 3:
How do we throw polymorphically?
Question 4:
When we throw this object, how many number of times will it be copied?
Question 5:
What do you understand by the term Linear Probing? Write down a C++ program which gives the data members and constructors for the hash table class that uses linear probing.
Question 6:
Write down the C++ program which gives the method search of the hash table.