Data structure(Stack) MCQ

Data structure(Stack) MCQ

University

10 Qs

quiz-placeholder

Similar activities

Quiz 4 - Queue ADT

Quiz 4 - Queue ADT

University

13 Qs

stack

stack

University

10 Qs

DataStructure

DataStructure

University

15 Qs

Stack??

Stack??

University

15 Qs

Sumatif Akhir Informatika

Sumatif Akhir Informatika

1st Grade - University

10 Qs

Data Structure

Data Structure

University

14 Qs

SD_Stack&Queue

SD_Stack&Queue

University

10 Qs

Data Structures Quiz-2

Data Structures Quiz-2

University

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