Complexity Analysis Station [4]

Complexity Analysis Station [4]

University

6 Qs

quiz-placeholder

Similar activities

Complexity Analysis Station [2]

Complexity Analysis Station [2]

University

7 Qs

27Mar

27Mar

University

10 Qs

Algorithms - Time Complexity

Algorithms - Time Complexity

University

10 Qs

Data Structure 1

Data Structure 1

University

7 Qs

Quiz despre B Tree

Quiz despre B Tree

University

10 Qs

Complexity Analysis Station [3]

Complexity Analysis Station [3]

University

6 Qs

BCSC0006 Trees

BCSC0006 Trees

University

10 Qs

BCSC0006 - Quiz 2 - Big-Oh Notation

BCSC0006 - Quiz 2 - Big-Oh Notation

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)?