Stack ADT

Stack ADT

5th Grade

9 Qs

quiz-placeholder

Similar activities

First step to Internet 5B1

First step to Internet 5B1

5th Grade

10 Qs

Test #3 Inside Computer parts

Test #3 Inside Computer parts

4th - 6th Grade

14 Qs

Gr3-Scratch - Revision

Gr3-Scratch - Revision

3rd - 5th Grade

11 Qs

GUI Operating system-An introduction

GUI Operating system-An introduction

1st - 5th Grade

10 Qs

Logos - Digital Images

Logos - Digital Images

2nd - 10th Grade

10 Qs

Microsoft Excel

Microsoft Excel

5th Grade

12 Qs

MIT App Inventor JC Assessment 1

MIT App Inventor JC Assessment 1

4th - 6th Grade

10 Qs

Grades 4-6 Diagnostic Test

Grades 4-6 Diagnostic Test

4th - 6th Grade

10 Qs

Stack ADT

Stack ADT

Assessment

Quiz

Computers

5th Grade

Medium

Created by

Colin Leod

Used 37+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Process of adding an element to a stack is

Create

Push

Evaluation

Pop

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Process of removing an element from the stack

Create

Push

Evaluation

Pop

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

In a stack, if a user tries to remove an element from an empty stack it is called

Underflow

Empty Collection

Overflow

Garbage Collection

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Pushing an element into a stack already having six elements and the size is six, then the stack has

Overflow

Crash

Underflow

User flow

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Stack Data Structure is

FIFO

None of these

LILO

LIFO

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following function where Max is the maximum amount of elements in a stack


Procedure Demo(newItem)

Begin

If topValue = Max then

print "It is full"


else

topValue = topValue + 1

Stack(topValue) = newItem

End Procedure


The algorithm above is designed to show how

values are popped off a stack

values are pushed into a stack

top values can be replaced

values can be replaced in a stack

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

LEMON     ----- Top
ROSE
CARROT
CORN
TULIP

After three POP operations have been performed on the above stack, the three items, in order, which will be taken out of the stack are

LEMON, ROSE, CARROT

ROSE, CARROT, CORN

TULIP, CORN, CARROT

CARROT, CORN, TULIP

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A stack is a data structure in which elements

can be added to any position and removed only from the top

can be only added to the top and removed from any position

can be added and removed from the top only

can be added and removed from any position

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements is a specification of a set of data and the set of operations that can be performed on the data?

Library

ADT

Package

Tracer