Data structure(Stack) MCQ

Data structure(Stack) MCQ

University

10 Qs

quiz-placeholder

Similar activities

Struktur Data Last Meeting

Struktur Data Last Meeting

University

10 Qs

Unit 14: Abstract

Unit 14: Abstract

University

8 Qs

Quiz - CSE

Quiz - CSE

University

10 Qs

NSCC-CODE TO COIN

NSCC-CODE TO COIN

University

15 Qs

InfTech Vertiefung

InfTech Vertiefung

University

8 Qs

Quiz 1 Stack [Pre-Test]

Quiz 1 Stack [Pre-Test]

11th Grade - University

15 Qs

Stack & Queue

Stack & Queue

University

10 Qs

Struktur Data Mini Quiz

Struktur Data Mini Quiz

University

15 Qs

Data structure(Stack) MCQ

Data structure(Stack) MCQ

Assessment

Quiz

Computers

University

Hard

Created by

HEMALATHA 221701020

FREE Resource

10 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

enter the output for the code

LETSFINDC

declare a stack of characters

while(there are more characters in the word)

{

read a ch

push the ch on the stack}

while(stack in not empty)

{

pop a ch off the stack

print on screen

}

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following sequence of operations is performed on stack: PUSH (10),PUSH (20),POP,PUSH (10),PUSH (20),POP,POP,POP,PUSH (20),POP The sequence of the value popped out is

10,20,20,10,20

20,20,10,20,10

20,10,20,10,20

20,20,10,10,20

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

processes of inserting an element in stack is called?

push

pop

delete

none of these

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following sequence of operations on an empty stack.

push(54); push(52); pop(); push(55); push(62); s = pop();

Consider the following sequence of operations on an empty queue.

enqueue(21); enqueue(24); dequeue(); enqueue(28); enqueue(32); q = dequeue();

The value of s + q is ______

76

96

64

86

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

the process of accessing data stored in a serial access memory is similar to manipulating data on a

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The postfix expression for the infix expression A + B (C + D) / F + D E is

AB+CD+*F/D+E*

ABCD+*F/+DE*+

A*B+CD/F*DE++

A+*BCD/F*DE++

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Entries in a stack are “ordered”. What is the meaning of this statement?

A collection of stacks is sortable

Stack entries may be compared with the ‘<‘ operation

The entries are stored in a linked list

There is a Sequential entry that is one by one

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?