Data Structures Through C C-21 (UNIT 5 & 6)

Data Structures Through C C-21 (UNIT 5 & 6)

12th Grade

20 Qs

quiz-placeholder

Similar activities

Data structure test1

Data structure test1

12th Grade

20 Qs

Ujian Sekolah Informatika Kelas 12 TAHUN  2024/2025

Ujian Sekolah Informatika Kelas 12 TAHUN 2024/2025

12th Grade

20 Qs

Y13 Graph Traversal

Y13 Graph Traversal

9th Grade - University

16 Qs

PTS KELAS 9

PTS KELAS 9

9th - 12th Grade

20 Qs

Year 12 Programming

Year 12 Programming

11th - 12th Grade

15 Qs

Data Structures

Data Structures

12th Grade

15 Qs

Stack

Stack

12th Grade

20 Qs

Topic 3 (Stacks)

Topic 3 (Stacks)

1st - 12th Grade

20 Qs

Data Structures Through C C-21 (UNIT 5 & 6)

Data Structures Through C C-21 (UNIT 5 & 6)

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Battala Krishna

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the value of the postfix expression 6 3 2 4 + – *?

1

30

-9

-18

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Here is an infix expression: 4 + 3*(6*3-12). Suppose that we are using the usual stack algorithm to convert the expression from infix to postfix notation. The maximum number of symbols that will appear on the stack AT ONE TIME during the conversion of this expression?

4

3

2

1

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What does ‘stack underflow’ refer to?

accessing item from an undefined stack

adding items to a full stack

removing items from an empty stack

index out of bounds exception

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following array element will return the top-of-the-stack-element for a stack of size N elements?

S[N-1]

S[N]

S[N-2]

S[N+1]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Convert the following infix expressions into its equivalent postfix expressions.
(A + B ⋀D)/(E – F)+G

(A B D ⋀ + E F – / G +)

(A B D +⋀ E F – / G +)

(A B D ⋀ + E F/- G +)

(A B D E F + ⋀ / – G +)

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

A data structure in which elements can be inserted or deleted at/from both ends but not in the middle is?

Queue

Circular queue

Deque

Priority queue

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the need for a circular queue?

effective usage of memory

easier computations

to delete elements based on priority

implement LIFO principle in queues

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?