DSA + System Design - 12

DSA + System Design - 12

Professional Development

11 Qs

quiz-placeholder

Similar activities

Minecraft

Minecraft

KG - Professional Development

13 Qs

Graph terminology

Graph terminology

Professional Development

9 Qs

DS_Linked_List

DS_Linked_List

Professional Development

10 Qs

Stacks

Stacks

Professional Development

16 Qs

DSA 2

DSA 2

Professional Development

13 Qs

DS CLASS QUIZ

DS CLASS QUIZ

Professional Development

10 Qs

DSUC Revision

DSUC Revision

Professional Development

8 Qs

Informatika

Informatika

Professional Development

10 Qs

DSA + System Design - 12

DSA + System Design - 12

Assessment

Quiz

Computers

Professional Development

Medium

Created by

Puneet Kansal

Used 2+ times

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the time complexity of the push and pop operations in a stack implemented with a linked list?

O(n)

O(log n)

O(1)

O(n log n)

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Given an infix expression: A+B∗(C−D)/E what is the equivalent postfix expression?

AB+CD−∗E/

ABCD−∗+E/

AB+CD∗−E/

ABCD−∗E/+

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How many stacks are required to implement a queue using the stack data structure?

1

2

3

4

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is not an application of stacks?

Function call management

Infix to postfix conversion

Managing a list of items

Balancing symbols

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In a stack implemented using an array, what is the time complexity of accessing the i-th element from the top of the stack?

O(1)

O(i)

O(n-i)

O(n)

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following conditions indicate that a stack is empty?

top == stack.length

top == stack.length - 1

top == 0

top == -1

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In the context of recursion, the stack is used to store which of the following?

Static variables

Global variables

Local variables and return addresses

Register values

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?