Unit 2 - Practice Quiz

CSE205 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 What are the two main components of a node in a singly linked list?

A. Data and Index
B. Head and Tail
C. Value and Reference Count
D. Data and Next Pointer

2 Which of the following best describes the memory allocation of a linked list?

A. Static and Non-contiguous
B. Dynamic and Non-contiguous
C. Static and Contiguous
D. Dynamic and Contiguous

3 What is the time complexity to access the Nth element in a singly linked list?

A. O(n)
B. O(1)
C. O(n^2)
D. O(log n)

4 Which pointer is required to maintain access to the entire linked list?

A. Middle pointer
B. Tail pointer
C. Head pointer
D. Null pointer

5 In C, which function is commonly used to dynamically allocate memory for a new node?

A. create()
B. new()
C. alloc()
D. malloc()

6 What is the value of the 'next' pointer in the last node of a grounded singly linked list?

A. Address of the previous node
B. Address of the Head
C. NULL
D. Garbage value

7 Which of the following is a disadvantage of a singly linked list compared to an array?

A. Expensive insertion at the beginning
B. Memory wastage due to pointers
C. Fixed size
D. Cannot expand dynamically

8 In a self-referential structure definition for a node, what is the data type of the pointer member?

A. struct node*
B. int*
C. char*
D. void*

9 What condition indicates that a singly linked list is empty?

A. head == tail
B. head == NULL
C. head->next == NULL
D. head->data == 0

10 What is the time complexity for inserting a node at the beginning of a singly linked list?

A. O(log n)
B. O(n log n)
C. O(1)
D. O(n)

11 When traversing a singly linked list, what is the condition to stop the loop?

A. ptr->data == NULL
B. ptr->next == NULL
C. ptr == head
D. ptr == NULL

12 Which scenario results in an 'Overflow' condition in a linked list?

A. The head pointer is lost
B. The list is empty
C. The list contains a loop
D. The Free Storage Pool (Avail List) is empty

13 What is the correct order of operations to insert a node 'NEW' between node 'A' and node 'B' (where A->next is B)?

A. NEW->next = A; A->next = B;
B. NEW->next = B; A->next = NEW;
C. B->next = NEW; NEW->next = A;
D. A->next = NEW; NEW->next = B;

14 What is the time complexity of deleting the last node in a singly linked list (without a tail pointer)?

A. O(log n)
B. O(n^2)
C. O(1)
D. O(n)

15 Which function is used to release the memory of a deleted node back to the system?

A. free()
B. remove()
C. delete()
D. dalloc()

16 What is a 'Header Linked List'?

A. A list with two pointers per node
B. A list where the last node points to the head
C. A list that contains a special node at the beginning containing metadata
D. A list sorted in ascending order

17 In a 'Grounded' Header Linked List, what does the last node point to?

A. Random Memory
B. The Header Node
C. The First Data Node
D. NULL

18 In a 'Circular' Header Linked List, what does the last node point to?

A. The Last Node itself
B. The First Data Node
C. The Header Node
D. NULL

19 What is the primary advantage of using a Header node?

A. It simplifies insertion and deletion algorithms by removing special cases for the first node
B. It uses less memory
C. It allows binary search
D. It automatically sorts data

20 What defines a Circular Linked List (without a header)?

A. Last node points to NULL
B. Nodes are arranged in a circle visually only
C. Last node points to the first node
D. Head is NULL

21 What is the loop termination condition when traversing a circular linked list starting from head?

A. ptr == NULL
B. ptr == head (after starting)
C. ptr->next == NULL
D. ptr->next == head

22 Which data structure allows traversal in both forward and backward directions?

A. Singly Linked List
B. Stack
C. Two-way (Doubly) Linked List
D. Circular Singly Linked List

23 How many pointers does a standard node in a Doubly Linked List contain?

A. Two
B. Zero
C. Three
D. One

24 What is the memory overhead of a Doubly Linked List compared to a Singly Linked List?

A. Requires double the data space
B. 50% less
C. Requires one extra pointer per node
D. Same

25 In a Doubly Linked List, to delete a node P (not first/last), which operations are needed?

A. P->prev->next = P->prev; P->next->prev = P->next;
B. P->prev->next = P->next; P->next->prev = P->prev;
C. P->next = NULL; P->prev = NULL;
D. head = P->next;

26 What is the time complexity to delete a node in a Doubly Linked List if the pointer to that node is given?

A. O(n)
B. O(log n)
C. O(1)
D. O(n log n)

27 Which list is best suited for implementing a 'Back' and 'Forward' button in a browser?

A. Circular Linked List
B. Queue
C. Singly Linked List
D. Doubly Linked List

28 In a Circular Doubly Linked List, what does the left (prev) pointer of the first node point to?

A. The second node
B. The first node
C. The last node
D. NULL

29 Which condition indicates 'Underflow' in a linked list?

A. Inserting into a full memory
B. Allocating NULL
C. Deleting from an empty list
D. Traversing past the end

30 If a Singly Linked List is effectively used as a Stack, which end is most efficient for Push and Pop?

A. Push at Start, Pop at Start
B. Push at End, Pop at Start
C. Push at Start, Pop at End
D. Push at End, Pop at End

31 Can Binary Search be effectively applied to a standard Linked List?

A. Yes, with O(n) complexity
B. No, because random access is not allowed
C. No, because it's not sorted
D. Yes, with O(log n) complexity

32 What happens if you free a node without updating the pointers pointing to it?

A. Stack Overflow
B. Dangling Pointer
C. Memory Leak
D. List becomes circular

33 What is the logical structure of a linked list?

A. Non-Linear
B. Hierarchical
C. Linear
D. Grid

34 In a Doubly Linked List, if p points to a node, what is p->next->prev equivalent to (assuming p is not last)?

A. NULL
B. p->next
C. p->prev
D. p

35 Which algorithm is commonly used to detect a cycle (loop) in a linked list?

A. Floyd’s Cycle-Finding Algorithm (Tortoise and Hare)
B. Binary Search
C. Dijkstra's Algorithm
D. Quick Sort

36 To reverse a singly linked list, how many pointers are typically required during the traversal?

A. 1
B. 4
C. 2
D. 3

37 What is a Sentinel node?

A. A node with NULL data
B. A dummy node (like a header) used to simplify boundary conditions
C. The last node in a list
D. A node responsible for memory allocation

38 Which polynomial operation is most efficiently handled by linked lists?

A. Roots finding
B. Graphing
C. Evaluation
D. Addition of sparse polynomials

39 In a Two-way list, inserting a node at the beginning requires changing how many existing pointers (excluding the new node's pointers)?

A. 1
B. 0
C. 3
D. 2

40 What data type is head typically declared as?

A. void
B. struct node*
C. int
D. struct node

41 If ptr is a pointer to a node, how do you access the data of that node in C?

A. *ptr.data
B. ptr.data
C. &ptr.data
D. ptr->data

42 Which operation typically runs faster on a Circular Linked List than a standard Singly Linked List?

A. Binary Search
B. Deleting the first node while maintaining a pointer to the last node
C. Sorting
D. Finding the Nth node

43 Which of the following is NOT a type of linked list?

A. Indexed Linked List
B. Circular Linked List
C. Singly Linked List
D. Doubly Linked List

44 Memory for a linked list node is allocated from which segment?

A. Heap
B. Code Segment
C. Data Segment
D. Stack

45 What is the main disadvantage of a Circular Linked List?

A. Risk of infinite loops during traversal if not handled carefully
B. Requires double memory
C. Cannot traverse backwards
D. Insertion is O(n)

46 To concatenate two singly linked lists (List A and List B) into one, what operation is required?

A. Traverse B to end and point to A
B. Traverse A to the end and make the last node point to head of B
C. Make head of A point to head of B
D. Copy all nodes of B to A

47 How do you represent a Polynomial using a linked list?

A. Nodes store coefficient and exponent: [3,2] -> [5,0] -> NULL
B. Array of integers
C. Nodes store value of x
D. Nodes store only coefficients

48 In a doubly linked list, what does head->prev point to?

A. The second node
B. The tail
C. NULL
D. Random garbage

49 When deleting a node from a linked list, why is a temporary pointer often used?

A. It is required by the C syntax
B. To store the address of the node to be freed so links can be rewired first
C. To speed up deletion
D. To allocate new memory

50 Which complexity best describes sorting a Linked List using Merge Sort?

A. O(1)
B. O(n^2)
C. O(n log n)
D. O(n)