DAA - Class Test 1

DAA - Class Test 1

University

7 Qs

quiz-placeholder

Similar activities

Analysis of Algorithms

Analysis of Algorithms

University

10 Qs

DAA Quiz 1

DAA Quiz 1

University

10 Qs

Algorithm analysis: divide & conquer theory

Algorithm analysis: divide & conquer theory

University

10 Qs

GCSE Computer Science 9-1: Sorting Algorithms

GCSE Computer Science 9-1: Sorting Algorithms

10th Grade - University

10 Qs

Quiz 2 DS1E

Quiz 2 DS1E

University

12 Qs

Quiz 2 DS1D

Quiz 2 DS1D

University

12 Qs

Recursion

Recursion

University

8 Qs

BANKERS ALGORITHM(CONCEPTS)

BANKERS ALGORITHM(CONCEPTS)

University - Professional Development

5 Qs

DAA - Class Test 1

DAA - Class Test 1

Assessment

Quiz

Computers

University

Hard

Created by

Ankush Jain

Used 11+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

5 mins • 5 pts

Consider the following C-program fragment in which i, j and n are integer variables.
for (i = n, j = 0; i > 0; i /= 2, j += i);
let val (j) denote the value stored in the variable j after termination of the for loop. Which one of the following is true?

2.

MULTIPLE CHOICE QUESTION

3 mins • 5 pts

Consider the following segment of C-code:

int j, n; j=1;

while(j <= n)

j = j * 2;

The number of comparisons made in the execution of the loop for any n > 0 is:

3.

FILL IN THE BLANK QUESTION

3 mins • 5 pts

4.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

Let f(n) = n2 log n and g(n) = n(log n)10 be two positive functions of n. Which of the following statements is correct?

5.

MULTIPLE SELECT QUESTION

2 mins • 3 pts

Which of the following is false in following ?

6.

MULTIPLE SELECT QUESTION

3 mins • 5 pts

Only I is correct

Only II is correct

Both I and II are correct

Neither I nor II correct

7.

MULTIPLE CHOICE QUESTION

5 mins • 5 pts