Complexity Analysis Station [2]

Complexity Analysis Station [2]

University

7 Qs

quiz-placeholder

Similar activities

Analysis of algorithm

Analysis of algorithm

University

10 Qs

Time complexity

Time complexity

University

10 Qs

PLC Chapter2 HW2

PLC Chapter2 HW2

University

10 Qs

Complexity Analysis Station [1]

Complexity Analysis Station [1]

University

7 Qs

DS Quiz 2

DS Quiz 2

University

10 Qs

fortnite as of season x

fortnite as of season x

KG - Professional Development

10 Qs

Data Structures

Data Structures

University

5 Qs

geth silbert quiz

geth silbert quiz

University

11 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