Question Detail

In C how many parameters can passed to a function

  • 2
  • 5
  • 10
  • as many as defined in function definition
Similar Questions :

1. Repeated execution of simple computation may cause compounding of

  • round off errors
  • syntax errors
  • run time errors
  • logic errors

2. ++i is equivalent to

  • i = i + 2
  • i = i + 1
  • i = i + i
  • i = i - 1

3. The complexity of merge sort algorithm is

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

4. The complexity of Bubble sort algorithm is

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

5. Preorder is

  • depth first order
  • breadth first order
  • topological order
  • linear order
Read more from - Data Structure Questions Answers - Chapter 1