Menu

Asymptotic Notation Questions

MCQ
31.
Upper bound is denoted as _______
forum Discussion
MCQ
32.
lower bound is denoted as _______
forum Discussion
MCQ
33.
The function f(n)=o(g(n)) if and only if Limit f(n)/g(n)=0 n->∞
forum Discussion
MCQ
34.
The function f(n)=o(g(n)) if and only if Limit g(n)/f(n)=0 n->∞
forum Discussion
MCQ
35.
Time complexity of given algorithm

 Algorithm Display(A) 
{ 
S:=0.0;
 For i:=0 to n-1 
{ 
S:=S+A[i];
 Return S; 
} 
}
forum Discussion
MCQ
36.
Time complexity of given algorithm 

Algorithm:

Sum(A,S) 
{ 
for i:=1 to n-1 
{ 
for j:=2 to n-1
 { 
 S:=S+i+j;
  return S;
   }
 }
 }
forum Discussion
MCQ
37.
For defining the best time complexity, let f (n) = log n and g (n) = √n,
forum Discussion
MCQ
38.
Which of the following asymptotic notations correctly describes the relationship between the functions \(f(n) = n^3 + 100n^2\) and \(g(n) = n^4\)?
forum Discussion
chevron_left BackPage 4 of 4