61. | In line '400 IF NAME$="***" THEN Average= Total Mark/N' of BASIC program, AVERAGE is considered as |
Answer: (a).real numbers
|
62. | In line '500 IF NAME$="***" THEN Average= Total Mark/N' of BASIC program, Total Mark and N are considered as |
Answer: (a).set of integers
|
63. | Rate at which cost of algorithm grows as size of its input grows is called its |
Answer: (c).Growth rate
|
64. | Critical resource for a program is most often its |
Answer: (a).Running time
|
65. | A growth rate of n, is referred to as |
Answer: (b).Linear growth rate
|
66. | Algorithm that begins with First position in array and looks at each value in turn until it is found is known to be |
Answer: (c).Sequential searching
|
67. | Efficiency of an algorithm is measured by |
Answer: (d).Asymptotic analysis
|
68. | An algorithm with running-time of a highest-order term containing a factor of n^2 is said to have a |
Answer: (a).Quadratic growth rate
|
69. | An analysis that estimates resource consumption of an algorithm is known to be |
Answer: (c).Asymptotic analysis
|
70. | Implementation of operations associated with an ADT is done by a |
Answer: (a).Member function
|