Vidyalelo
Data Structure · Q141

Introduction to Data Structures

Programming · Data Structure · question 141

Q141

What is the functionality of the following code? Choose the most appropriate answer. public int function() if(head == null) return Integer.MIN_VALUE; int var; Node temp = head; while(temp.getNext() != head) temp = temp.getNext(); if(temp == head) var = head.getItem(); head = null; return var; temp.setNext(head.getNext()); var = head.getItem(); head = head.getNext(); return var;

A.
Return data from the end of the list
B.
Returns the data and deletes the node at the end of the list
C.
Returns the data from the beginning of the list
D.
Returns the data and deletes the node from the beginning of the list
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board