DAA - Class Test 1

DAA - Class Test 1

University

7 Qs

quiz-placeholder

Similar activities

CSC126 Quick Exercise 1-1

CSC126 Quick Exercise 1-1

University

10 Qs

Q&A – Predicting Outcomes of Repetition (Primary 4 – 4CT.05)

Q&A – Predicting Outcomes of Repetition (Primary 4 – 4CT.05)

4th Grade - University

10 Qs

PDS - 04225 - Recursion - Chapter 12

PDS - 04225 - Recursion - Chapter 12

University

10 Qs

Algorithms basics

Algorithms basics

6th Grade - University

11 Qs

SWARM INTELLIGENCE

SWARM INTELLIGENCE

University

12 Qs

Algorithms

Algorithms

University

10 Qs

Software Testing

Software Testing

University

10 Qs

Weekly Contest #10 - TechXNinjas

Weekly Contest #10 - TechXNinjas

University

10 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