Python-Stacks & Queues

Python-Stacks & Queues

12th Grade

22 Qs

quiz-placeholder

Similar activities

Latihan PSAS Kelas 9

Latihan PSAS Kelas 9

9th Grade - University

20 Qs

Topic 3 (Stacks)

Topic 3 (Stacks)

1st - 12th Grade

20 Qs

Stacks and queues

Stacks and queues

12th Grade

27 Qs

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

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

12th Grade

20 Qs

Stack

Stack

12th Grade

20 Qs

INFORMATIKA (BAB II - BERPIKIR KOMPUTASIONAL)

INFORMATIKA (BAB II - BERPIKIR KOMPUTASIONAL)

12th Grade

20 Qs

1.4.2 Queues

1.4.2 Queues

12th Grade

20 Qs

Sains Komputer Tingkatan 5 - 3.1.2 Atur Cara dan Carta Alir

Sains Komputer Tingkatan 5 - 3.1.2 Atur Cara dan Carta Alir

10th - 12th Grade

20 Qs

Python-Stacks & Queues

Python-Stacks & Queues

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Shibi Anand

Used 251+ times

FREE Resource

22 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following usees FIFO method

Queue

stack

linklist

binary tree

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

This form of access is used to add and remove nodes from a queue.

LIFO, Last In First Out

FIFO, First In First Out

Both a and b

none

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

........ form of access is used to add remove nodes from a stack.
LIFO
Fifo
none
all

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following operation performed on a stack of size 5.

Push(1);

Pop();

Push(2);

Push(3);

Pop();

Push(4);

Pop();

Pop();

Push(5);

After the completion of all operation, the number of elements present on stack are

1

2

3

4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following circular queue can accommodate a maximum six elements with the following data

front = 2 rear = 4

queue = ____; L ; M; N; ___; ___

What will happen after ADD O operation takes place?

front = 2 rear = 5

queue = ______; L, M, N, O, ___

ront = 3 rear = 5

queue = L, M, N, O, ___

front = 3 rear = 4

queue = ______; L, M, N, O, ___

ront = 2 rear = 4

queue = L, M, N, O, ___

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method is used to add an element to a Queue?

dequeue()

enqueue()

push()

pop()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method is used to add an element to a Stack?

dequeue()

enqueue()

push()

pop()

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?