Asymptotic Notations Practice Questions

Asymptotic Notations Practice Questions

University

58 Qs

quiz-placeholder

Similar activities

AI Quiz

AI Quiz

University

55 Qs

Operating System Sessional Exam

Operating System Sessional Exam

University

60 Qs

machine learning algorithm

machine learning algorithm

University

59 Qs

ICT_Test

ICT_Test

University

59 Qs

data structures lab model exam

data structures lab model exam

1st Grade - University

60 Qs

Infinity - inkling 2k23

Infinity - inkling 2k23

University

57 Qs

BCS Software Languages

BCS Software Languages

12th Grade - University

59 Qs

Data Structure & Algorithm PUT EXAM

Data Structure & Algorithm PUT EXAM

University

60 Qs

Asymptotic Notations Practice Questions

Asymptotic Notations Practice Questions

Assessment

Quiz

Computers

University

Medium

Created by

Manas Mishra

Used 97+ times

FREE Resource

58 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following case does not exist in complexity theory?

Best case

•Worst case

•Average case

Null case

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The worst case complexity for insertion sort is _________

O(n)

O(log n)

•O(n2)

•O(n log n)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int fun(int n)

{

int count = 0;

for (int i = 0; i < n; i++)

for (int j = i; j > 0; j--)

count = count + 1;

return count;

}

Theta (n)

Theta (n^2)

•Theta (n*Logn)

•Theta (nLognLogn)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does it mean when we say that an algorithm X is asymptotically more efficient than Y?

X will always be a better choice for small inputs

•X will always be a better choice for large inputs

•Y will always be a better choice for small inputs

•X will always be a better choice for all inputs

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of following code:

int a = 0, b = 0;

for (i = 0; i < N; i++) {

a = a + rand();

}

for (j = 0; j < M; j++) {

b = b + rand();

}

•O(N * M) time,

•O(N + M) time,

None of these

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To measure Time complexity of an algorithm Big O notation is used which:

describes limiting behaviour of the function

•characterises a function based on growth of function

•upper bound on growth rate of the function

•all of the mentioned

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If for an algorithm time complexity is given by O(n) then complexity of it is:

•constant

•linear

•exponential

•none of the mentioned

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?