Pre Quiz CIE Activity-01- Flipped Classroom

Pre Quiz CIE Activity-01- Flipped Classroom

University

8 Qs

quiz-placeholder

Similar activities

IMSD_Week-3_CSE-1

IMSD_Week-3_CSE-1

University

10 Qs

Quiz - Foundation of Testing (Testing and System Implementation)

Quiz - Foundation of Testing (Testing and System Implementation)

University

10 Qs

INTERNET AND CYBER ETHICS QUIZ

INTERNET AND CYBER ETHICS QUIZ

University

10 Qs

Recap W02 - W04 Information and Communication Technology

Recap W02 - W04 Information and Communication Technology

University

12 Qs

Bab 4 Jaringan Komputer dan Internet

Bab 4 Jaringan Komputer dan Internet

11th Grade - University

10 Qs

Quiz on Basics of C

Quiz on Basics of C

University

10 Qs

Nano quiz: Bottleneck of Motivation 2 and Receptivity Threshold

Nano quiz: Bottleneck of Motivation 2 and Receptivity Threshold

University

13 Qs

IT for Managers - M2

IT for Managers - M2

University

11 Qs

Pre Quiz CIE Activity-01- Flipped Classroom

Pre Quiz CIE Activity-01- Flipped Classroom

Assessment

Quiz

Information Technology (IT)

University

Practice Problem

Medium

Created by

Kirti IT

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Only one end that is used in stack is called

front

rear

top

index

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The result of illegal attempt to remove an element from empty stack is called

stack overflow

stack underflow

stack exception

none of the above

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The result of illegal attempt to add an element from capacity complete stack is called

stack overflow

Stack underflow

Stack exception

Error in Stack

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the stack the data item placed on the stack first is 

The first element to be removed

The Last element to be removed

Placed at -1 index

Given an index zero

5.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Following stack operations are performed on an initially empty stack:

push(5); push(1); push(4); push(3); pop( ); push(2); pop( ); pop( ); push(8); push(7); pop(
);
What is the value stored in top of the stack after the above operations?

7

8

5

1

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following statement about stack data structure is NOT correct?

a) Linked List are used for implementing Stacks

b) Top of the Stack always contain the new node

c) Stack deletes first element inserted at first

d) Null link is present in the last node at the bottom of the stack

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the linked list implementation of a stack. Which of the following node is considered as Top of the stack?

a) First node

b) Last node

c) Any Node

d)Middle Node

8.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

The following postfix expression with single digit operands is evaluated using stack:

823^/23*+51*- 

The elements of the stack after the / is evaluated are 

6, 1

1

2

1, 2