Data Structures Minor-1

Data Structures Minor-1

University

15 Qs

quiz-placeholder

Similar activities

TECHNICAL QUIZ

TECHNICAL QUIZ

University

20 Qs

DSA5541 Quiz 1 TRI 2210

DSA5541 Quiz 1 TRI 2210

University

20 Qs

Quis Informatika Kelas XI (Senin, 1 September 2025)

Quis Informatika Kelas XI (Senin, 1 September 2025)

9th Grade - University

20 Qs

Quizze Buzzie

Quizze Buzzie

University

14 Qs

UTS Algoritma dan Struktur Data

UTS Algoritma dan Struktur Data

University

20 Qs

quiz 2 SDA

quiz 2 SDA

University

20 Qs

Stack

Stack

University

10 Qs

Data Structures and Algorithms Quiz

Data Structures and Algorithms Quiz

University

20 Qs

Data Structures Minor-1

Data Structures Minor-1

Assessment

Quiz

Computers

University

Hard

Created by

monica bandaru

Used 36+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the complexity of code

Sum=0

for(i=1; i<n; i*=2)

{

for(j=1;j<=n;j++)

                        sum++

O (n2 )

O(n)

O (n log n log n)

O(log n)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the advantage of the array data structure?

Amount of Memory allocated should be known beforehand

Elements of array accessed in constant time

Elements are stored in contiguous blocks

Multiple other data structures can be implemented using Arrays.

 

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following data structures finds its use in recursion

Linked List

Arrays

Stacks

Queues

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

There are unsorted Arrays A1,A2,….An. Assume that n is odd. Each of A1,A2,…An contains N distinct elements. There are no common elements between any two arrays. The worst-case time complexity of computing the median of medians of A1,A2,….An is

O(n)

O(n log n)

O(n^2)

O(n^2 log n)

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The no. of Comparisons done by a sequential Search is

(n/2)+1

(n+1)/2

(n-1)/2

(n+2)/2      

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

A function f defined on stacks of integers satisfies the following properties.

f(∅) = 0 and f (push (S, i)) = max (f(S), 0) + i

for all stacks S and integers i.

If a stack S contains the integers -10, -8, 5, 2 0, -1, 3, 6, -2 in order from bottom to top, what is f(S)?

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Stack A has the entries a, b, c (with a on top). Stack B is empty. An entry popped out of stack A may be printed straight away or pushed to stack B. An entry popped out of stack B may be only be printed. Which of the subsequent permutations of a, b, c is not feasible in this arrangement?

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?