Data Structure

Data Structure

Professional Development

20 Qs

quiz-placeholder

Similar activities

C131

C131

Professional Development

15 Qs

Language & Communication Quiz

Language & Communication Quiz

Professional Development

16 Qs

Pinoy Entertainment

Pinoy Entertainment

Professional Development

18 Qs

Volume 2

Volume 2

Professional Development

17 Qs

IMT TEAM BUILDING 2023

IMT TEAM BUILDING 2023

Professional Development

15 Qs

NNID-74-Unggul

NNID-74-Unggul

Professional Development

15 Qs

OM_SBENT3C_Q2

OM_SBENT3C_Q2

University - Professional Development

15 Qs

OTS EXAM

OTS EXAM

Professional Development

15 Qs

Data Structure

Data Structure

Assessment

Quiz

Computers, Other

Professional Development

Hard

Created by

mayur patankar

Used 19+ times

FREE Resource

AI

Enhance your content in a minute

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

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

1. Which of the following properties is associated with a queue?

a) First In Last Out

b) First In First Out

c) Last In First Out

d) Last In Last Out

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Consider an implementation of unsorted singly linked list. Suppose it has its representation with a head pointer only. Given the representation, which of the following operation can be implemented in O(1) time?

i) Insertion at the front of the linked list

ii) Insertion at the end of the linked list

iii) Deletion of the front node of the linked list

iv) Deletion of the last node of the linked list

a) I and II

b) I and III

c) I, II and III

d) I, II and IV

Answer explanation

Answer: bExplanation: We know the head node in the given linked list. Insertion and deletion of elements at the front of the linked list completes in O (1) time whereas for insertion and deletion at the last node requires to traverse through every node in the linked list. Suppose there are n elements in a linked list, we need to traverse through each node. Hence time complexity becomes O(n).

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In linked list implementation of a queue, front and rear pointers are tracked. Which of these pointers will change during an insertion into a NONEMPTY queue?

a) Only front pointer

b) Only rear pointer

c) Both front and rear pointer

d) No pointer will be changed

Answer explanation

Answer: bExplanation: Since queue follows FIFO so new element inserted at last.

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The associativity of an exponentiation operator ^ is right side.

a) True

b) False

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What would be the Prefix notation for the given equation?

A+(B*C)

a) +A*CB

b) *B+AC

c) +A*BC

d) *A+CB

Answer explanation

Answer: cExplanation: Reverse the equation or scan the equation from right to left. Apply the infix-postfix algorithm. The equation inside the bracket evaluates to CB* and outside the bracket evaluates to A+ therefore getting CB*A+. Reversing this and we get +A*BC.

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

1. Which of the following is false about a binary search tree?

a) The left child is always lesser than its parent

b) The right child is always greater than its parent

c) The left and right sub-trees should also be binary search trees

d) In order sequence gives decreasing order of elements

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the speciality about the inorder traversal of a binary search tree?

a) It traverses in a non increasing order

b) It traverses in an increasing order

c) It traverses in a random fashion

d) It traverses based on priority of the node

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?