ANALYSIS OF ALGORITHMS

ANALYSIS OF ALGORITHMS

University

15 Qs

quiz-placeholder

Similar activities

Unidad 4-Cableado Estructurado-2

Unidad 4-Cableado Estructurado-2

KG - University

15 Qs

Software Engineering-1

Software Engineering-1

University

20 Qs

ER MODEL

ER MODEL

University

15 Qs

Kuis Dadakan ;)

Kuis Dadakan ;)

10th Grade - University

15 Qs

Banco de Dados

Banco de Dados

University - Professional Development

20 Qs

Subtema 1.1 EVA

Subtema 1.1 EVA

University

10 Qs

BARRA DE TAREA Y PANEL DE CONTROL

BARRA DE TAREA Y PANEL DE CONTROL

University

10 Qs

21CSC305P - Machnine Learning - Quiz

21CSC305P - Machnine Learning - Quiz

University

15 Qs

ANALYSIS OF ALGORITHMS

ANALYSIS OF ALGORITHMS

Assessment

Quiz

Computers

University

Hard

Created by

POOJA SAPRA

Used 423+ times

FREE Resource

AI

Enhance your content in a minute

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

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 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)

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The complexity of Binary search algorithm is

O(n)

O(log n)

O(n2)

O(n log n)

3.

MULTIPLE CHOICE QUESTION

1 min • 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)

4.

MULTIPLE CHOICE QUESTION

1 min • 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)

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

A linear function takes the form

f(n) = an + b

f(n) = an2 +bn + c

f(n) = alog2n

f(n) = a + b

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Find the slowest algorithm:

O (n)

O (n^2)

O (n!)

O (2^n)

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

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

Exponential Time

Linear Time

Polynomial Time

Constant Time

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?