MCQ
Q.
What is the functionality of the following piece of code?
public void display()
{
if(size == 0)
System.out.println("underflow");
else
{
Node current = first;
while(current != null)
{
System.out.println(current.getEle());
current = current.getNext();
}
}
}
Correct Answer: B
None.