Complexity Analysis Station [2]

Complexity Analysis Station [2]

University

7 Qs

quiz-placeholder

Similar activities

DSA QUIZZ

DSA QUIZZ

University

4 Qs

AdvancedProgramming_intro

AdvancedProgramming_intro

University

10 Qs

Complexity Analysis Station [5]

Complexity Analysis Station [5]

University

5 Qs

CC 104 Prelim

CC 104 Prelim

University

11 Qs

Complexity Analysis Station [4]

Complexity Analysis Station [4]

University

6 Qs

JAVALO3

JAVALO3

University

11 Qs

HEAP TREE

HEAP TREE

University

11 Qs

DATA STRUCTURE-HEAP

DATA STRUCTURE-HEAP

University

12 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