adplus-dvertising
frame-decoration

Question

For many problems such as sorting, there are many choices of algorithms to use, some of which are extremely___________.

a.

Space efficient

b.

Time efficient

c.

Both (a) and (b)

d.

None of the above

Answer: (c).Both (a) and (b)

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. For many problems such as sorting, there are many choices of algorithms to use, some of which are extremely___________.

Similar Questions

Discover Related MCQs

Q. In the analysis of algorithms, what plays an important role?

Q. An algorithm performs lesser number of operations when the size of input is small, but performs more operations when the size of input gets larger. State if the statement is True or False or Maybe.

Q. To verify whether a function grows faster or slower than the other function, we have some asymptotic or mathematical notations, which is_________.

Q. A function in which f(n) is Ω(g(n)), if there exist positive values k and c such that f(n)>=c*g(n), for all n>=k. This notation defines a lower bound for a function f(n):

Q. An algorithm that indicates the amount of temporary storage required for running the algorithm, i.e., the amount of memory needed by the algorithm to run to completion is termed as_____.

Q. The amount of time the computer needs to run to completion is known as_____.

Q. ___________algorithm is one which utilizes minimum processor time and requires minimum memory space during its execution.

Q. In simple terms, we can say that an algorithm is a step-by-step procedure for performing some task in a finite amount of time. State if the statement is true or false.

Q. Each operation must have a definite meaning and it must be perfectly clear. All steps of an algorithm need to be precisely defined. The actions to be executed in each case should be _____________.

Q. In general, a problem may be defined as a state of thing that is not in the___________.

Q. An algorithm that requires ................... operations to complete its task on n data elements is said to have a linear runtime.

Q. The complexity of adding two matrices of order m*n is

Q. lg (n!) = .................

Q. Which of the following uses memorization?

Q. An algorithm is made up of 2 modules M1&M2.; If order of M1 is f(n) & M2 is g(n) then the order of algorithm is?

Q. An array of n numbers is given, where n is an even number. The maximum as well as the minimum of these n numbers needs to be determined. Which of the following is TRUE about the number of comparisons needed?

Q. The running time of an algorithm T(n),where 'n' is the input size, of a recursive algorithm is given as follows.is given by T(n) =c + T(n - 1), if n > 1 d, if n ≤ 1 The order of this algorithm is

Q. Six files Fl, F2, F3, F4, F5 and F6 have 100,200,50,80, 120, 150 number of records respectively. In what order should they be stored so as to optimize access time? Assume each file is accessed with the same frequency.

Q. An algorithm is made up of 2 modules Ml and M2. If order of M1 is f(n) and M2 is g(n) then the order of the algorithm is

Q. The order of an algorithm that finds whether a given Boolean function of 'n' variables, produces a 1 is