Complexity Analysis Station [4]

Complexity Analysis Station [4]

University

6 Qs

quiz-placeholder

Similar activities

Final Practice

Final Practice

University

7 Qs

Data Structure 1

Data Structure 1

University

7 Qs

Quiz despre B Tree

Quiz despre B Tree

University

10 Qs

Informatik II Quiz 4

Informatik II Quiz 4

University

10 Qs

Trees

Trees

University

11 Qs

Analysis of Algorithms

Analysis of Algorithms

University

10 Qs

DAA Quiz 1

DAA Quiz 1

University

10 Qs

XII Samacheer Computer Science

XII Samacheer Computer Science

12th Grade - University

10 Qs

Complexity Analysis Station [4]

Complexity Analysis Station [4]

Assessment

Quiz

Computers

University

Hard

Created by

Dareen Hussein

Used 14+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is asymptotic complexity in the following function?

O(n^2)

O(n!)

O(n log n)

O(2^n)

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

You are looking for a specific value in a binary tree, but the tree is not a binary search tree. What is the time complexity of this?

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the asymptotic complexity of the following function?

O(n^2)

O(logn)

O(sqrt(n))

O(n)

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

What is asymptotic complexity in the following function?

**Note that the function add_to_tree() has complexity O(logn), where n is the number of nodes in the tree.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is asymptotic complexity in the following function? Where n is the number of nodes.

O(n^2)

O(nlogn)

O(n^2logn)

O(n)

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What is the Big-O Notation of picking a sequence of 10 balls from a bag of 10 different coloured balls (the ball is not put back into the bag after being picked)?