Complexity Analysis Station [2]

Complexity Analysis Station [2]

University

7 Qs

quiz-placeholder

Similar activities

TEAM 2

TEAM 2

University

8 Qs

BCSC0006 - Quiz 2 - Big-Oh Notation

BCSC0006 - Quiz 2 - Big-Oh Notation

University

10 Qs

Complexity Analysis Station [3]

Complexity Analysis Station [3]

University

6 Qs

Algorithm analysis: divide & conquer theory

Algorithm analysis: divide & conquer theory

University

10 Qs

Algorithms - Time Complexity

Algorithms - Time Complexity

University

10 Qs

E1Slot Module 1

E1Slot Module 1

University

10 Qs

BCSC0006 - Quiz 4 - Linked List & Stacks

BCSC0006 - Quiz 4 - Linked List & Stacks

University

10 Qs

Data Structure Quiz 1

Data Structure Quiz 1

University

9 Qs

Complexity Analysis Station [2]

Complexity Analysis Station [2]

Assessment

Quiz

Computers

University

Easy

Created by

Dareen Hussein

Used 10+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is asymptotic complexity in the following void function?

O(n^5)

O(n^3)

O(n^2)

O(1)

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is the asymptotic complexity of the following function?

O(n^2)

O(nlogn)

O(n^2logn)

O(n)

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is asymptotic complexity in the following function?

O(n^2)

O(nlogn)

O(n^2logn)

O(n)

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is asymptotic complexity in the following function? If arrayA.length() not equal to arrayB.length().

O(a^2)

O(b^2)

O(ab)

O(1)

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is asymptotic complexity in the following function? If arrayA.length() not equal to arrayB.length().

O(a^2)

O(b^2)

O(ab)

O(1)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are equivalent to O(n)?

O(n + p), where p < n/2

O(2n)

O(n + log n)

All of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the main disadvantage of a binary search compared to a linear search?
It requires the data to be in order
It requires more memory
It does not execute as quickly with larger data sets
Not all CPUs are capable of executing the algorithm