DSA + System Design - 12

DSA + System Design - 12

Professional Development

11 Qs

quiz-placeholder

Similar activities

Informatika

Informatika

Professional Development

10 Qs

DS CLASS QUIZ

DS CLASS QUIZ

Professional Development

10 Qs

Dynamic Arrays C++

Dynamic Arrays C++

University - Professional Development

10 Qs

Advanced JS II

Advanced JS II

Professional Development

9 Qs

Banco de Dados - 4º TI - Praticando

Banco de Dados - 4º TI - Praticando

Professional Development

10 Qs

CCNP-Route-Post-Assessment

CCNP-Route-Post-Assessment

Professional Development

15 Qs

tipo de dado (python)

tipo de dado (python)

Professional Development

15 Qs

unit-5 test-1

unit-5 test-1

Professional Development

15 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?