Q.1.
While implementing Stack using list when we want to delete element we must use pop function as__________
Q.2.
In a graph if E=(u,v) means _____________
Q.3.
Stack is also called as
Q.4.
What does the following function do for a given Linked List with first node as head?
Q.5.
Consider the following operation performed on a stack of size 5.Push(1);Pop();Push(2);Push(3);Pop();Push(4);Pop();Pop();Push(5);After the completion of all operation, the number of elements present in stack are
Q.6.
Identify the types of sorting that used partition and exchange sort.