Complexity Analysis Station [2]

Complexity Analysis Station [2]

University

7 Qs

quiz-placeholder

Similar activities

CC 104 Prelim

CC 104 Prelim

University

11 Qs

Time Complexity

Time Complexity

University

10 Qs

Data Structuer

Data Structuer

University

12 Qs

DAA-Quiz1

DAA-Quiz1

University

10 Qs

BCSC0006 Trees

BCSC0006 Trees

University

10 Qs

DSA QUIZZ

DSA QUIZZ

University

4 Qs

Asymptotic Notations

Asymptotic Notations

University

10 Qs

HEAP TREE

HEAP TREE

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