DS (Data Structure) MCQ Quiz (Multiple Choice Questions And Answers)
Are you preparing for the next job interviews? If yes, trust me this post will help you also we'll suggest you check out a big collection for Programming Full Forms that may help you in your interview:
List of Programming Full Forms
- Priority queue
- Circular queue
- Single ended queue
- None of the Above
- balancing symbols
- line at ticket counter
- evaluation of postfix expression
- Both A and B
public void function(Node node)
{
if(size == 0)
head = node;
else
{
Node temp,cur;
for(cur = head; (temp = cur.getNext())!=null; cur = temp);
cur.setNext(node);
}
size++;
}
- Deleting a node at the beginning of the list
- Deleting a node at the ending of the list
- Inserting a node at the end of the list
- Both A and C
- selection
- deletion
- creation
- All of the Above