Algorithm Analysis

Algorithm Analysis

University

21 Qs

quiz-placeholder

Similar activities

PBO Inheritance Episode 2

PBO Inheritance Episode 2

University

18 Qs

Logika & Pemrograman (ID)

Logika & Pemrograman (ID)

10th Grade - Professional Development

20 Qs

Enfoques de calidad

Enfoques de calidad

University

18 Qs

CN_Minor2

CN_Minor2

University

20 Qs

Java Control and Loop -2

Java Control and Loop -2

University

20 Qs

Lenguaje de Definición de Datos

Lenguaje de Definición de Datos

University

18 Qs

Redes Sociales

Redes Sociales

University

20 Qs

Fintech

Fintech

University

20 Qs

Algorithm Analysis

Algorithm Analysis

Assessment

Quiz

Computers

University

Medium

Created by

Eben Sophia Paul

Used 53+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

21 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of following code:

int i, j, k = 0;

for (i = n / 2; i <= n; i++) {

for (j = 2; j <= n; j = j * 2) {

k = k + n / 2;

}

}

O(n)

O(nLogn)

O(n^2)

O(n^2Logn)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of following code:

int a = 0;

for (i = 0; i < N; i++) {

for (j = N; j > i; j--) {

a = a + i + j;

}

}

O(N)

O(N*log(N))

O(N * Sqrt(N))

O(N*N)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The complexity of Binary search algorithm is

O(n)

O(log n)

O(n2)

O(n log n)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of this code

int a = 0, i = N;

while (i > 0)

{

a += i;

i /= 2;

}

O(N)

O(Sqrt(N))

O(N / 2)

O(log N)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The number of executions grows extremely quickly as the size of the input increases

Exponential Time

Linear Time

Polynomial Time

Constant Time

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following has the highest time efficiency (consumes less time) in asymptotic efficiency class?

n

log n

n log n

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Factors that affect an Algorithm Runtime

Computer performance

Complexity

Input Size

All the factors listed.

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?