Menu

Lists Questions

MCQ
61.
struct node *current = start->nextwhat "current" will contain if it is variable of type struct node ?
forum Discussion
MCQ
62.
Consider the following linked list and linked list representation. 

what will be the value of following statement ?start->next->next->next->data

struct node {
      int data;
      struct node *next;
}*start = NULL;
 

 

forum Discussion
MCQ
63.
If start is pointing to first node of the linked list then consider the following statement -

     start = start->next;

    current = start->next;

what will be the value of address field of current ?

forum Discussion
MCQ
64.
In Linked list implementation, a node carries information regarding _______.
forum Discussion
MCQ
65.
A doubly linked list performs traversal in _________.
forum Discussion
MCQ
66.
Linked list data structure usage offers considerable saving in
forum Discussion
MCQ
67.
Consider linked list is used to implement the Stack then which of the following node is considered as Top of the Stack ?
forum Discussion
MCQ
68.
The link field in the last node of the linked list contains _________.
forum Discussion
MCQ
69.
When new element is added in the middle of singly linked list then ________.
forum Discussion
MCQ
70.
Which of the following operation is performed more efficiently in doubly linked list ?
forum Discussion