Question Detail

Recursive problems are implemented by

  • queues
  • stacks
  • linked lists
  • strings
Similar Questions :

1. The complexity of linear search algorithm is

  • O(n)
  • O(log n)
  • O(n2)
  • O(n log n)

2. minimum number of stacks of size n required to implement a queue of size n

  • One
  • Two
  • Three
  • Four

3. Which of the following name does not relate to stacks

  • FIFO lists
  • LIFO list
  • Piles
  • Push-down lists

4. Which sorting method is slowest

  • Quick sort
  • Heap sort
  • Shell sort
  • Bubble sort

5. In C how many parameters can passed to a function

  • 2
  • 5
  • 10
  • as many as defined in function definition
Read more from - Data Structure Questions Answers - Chapter 1