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

2.3.1 Graph Traversal & Path Finding Algorithms

2.3.1 Graph Traversal & Path Finding Algorithms

12th Grade - University

20 Qs

Assesmen Kognitif (XI)

Assesmen Kognitif (XI)

11th Grade - University

15 Qs

19.1 Algorithms Cambridge iA 9618

19.1 Algorithms Cambridge iA 9618

12th Grade

20 Qs

soal berpikir komputasional kelas 8 gasal

soal berpikir komputasional kelas 8 gasal

8th Grade - University

20 Qs

المكدس والطابور

المكدس والطابور

12th Grade

20 Qs

CS TOPICS Final Exam Review 2

CS TOPICS Final Exam Review 2

12th Grade

23 Qs

Python-Stacks & Queues

Python-Stacks & Queues

12th Grade

22 Qs

Data Structure

Data Structure

12th Grade - University

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