Menu

Lists Questions

MCQ
51.
Which of the following is not a type of Linked List ?
forum Discussion
MCQ
52.
Linked list is generally considered as an example of _________ type of memory allocation.
forum Discussion
MCQ
53.
Each Node contain minimum two fields one field called data field to store data. Another field is of type _________.
forum Discussion
MCQ
54.
Consider the Singly linked list having n elements. What will be the time taken to add an node at the end of linked list if Pointer is initially pointing to first node of the list.
forum Discussion
MCQ
55.
Pointer is pointing to the first element of the Node then time require to Insert Element to second position is __________.
forum Discussion
MCQ
56.
Consider a linked list of n elements. What is the time taken to insert an element after element pointed by same pointer ?
forum Discussion
MCQ
57.
The concatenation of two lists is to be performed in O(1) time. Which of the following implementations of a list could be used ?
forum Discussion
MCQ
58.
Time require to find any element of the linked list is _______.
forum Discussion
MCQ
59.
Consider the following linked list representation. Which of the following statement is used to create a node ?

struct node {
      int data;
      struct node *next;
}start = NULL;
struct node *new_node;
forum Discussion
MCQ
60.
Consider the below representation and predict what will be printed on the screen by following statement ?start->next->data

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