retagged by
1,973 views
0 votes
0 votes

The concept of order Big O is important because

  1. It can be used to decide the best algorithm that solves a given problem
  2. It is the lower bound of the growth rate of algorithm
  3. It determines the maximum size of a problem that can be solved in a given amount of time
  4. Both (A) and (B)
retagged by

2 Answers

0 votes
0 votes

Option (A) It can be used to decide the best algorithm that solves a given problem

0 votes
0 votes
Option A) is correct , It can be used to decide the best algorithm that solves the problem.
Answer:

Related questions

4 votes
4 votes
4 answers
1
admin asked Mar 31, 2020
84,862 views
Two main measures for the efficiency of an algorithm are:Processor and MemoryComplexity and CapacityTime and SpaceData and Space
1 votes
1 votes
1 answer
2
admin asked Mar 31, 2020
1,092 views
What is the solution to the recurrence $T(n)=T \bigg (\dfrac{n}{2} \bigg )+n$?$O(\log n)$$O(n)$$O(n\log n)$None of these
2 votes
2 votes
2 answers
3
admin asked Mar 31, 2020
8,640 views
The Knapsack problem belongs to which domain of problems?OptimizationNP completeLinear SolutionSorting
2 votes
2 votes
4 answers
4
admin asked Mar 31, 2020
15,564 views
The running time of Quick sort algorithm depends heavily on the selection of:No. of inputsArrangement of elements in an arraySize of elementsPivot Element