Home MCQ Bank MCQs from Data Structures and Algorithms Data structures & Algorithms - Multiple Choice Questions (MCQs) - Objective Set 3

Baba

A personal blog of Baba Pandey - A self taught SEO Expert

www.babapandey.com

Interesting Sites:

Computer Forensics Degree

New Things in IT

Online MCQ Test on Different Computer Science Subjects

These days I was busy entering questions in MCQ Quiz and publishing them in ICT Trends. Though the process is not yet complete and will never complete as well since it is gradual process of adding more and more question sets and old question papers from different exams. Anyway, following are the Online Tests completed so far.

 

 

Microsoft Word

Currently, follow ing online tests are avail able for Microsoft Word. We will be adding more in future.

  1. ICTTRENDS-MSWORD-01

     

  2. ICTTRENDS-MSWORD-02 

Algorithms and Data Structures

Fol low ing are the tests avail able for Algo rithms and Data Structures.

  1. ICTTRENDS-DSA-01

Computer Operator

Fol low ing are the tests avail able for Com puter Oper a tor Exam Preparation:

  1. Online Test Computer Operator 01
  2. Online Test on Computer Operator Old Question Paper 2059 ( icttrends-cop01 )

 

 

 
Google Books Loses Copyright Infringement
 
A Paris court has ruled that Google (NSDQ: GOOG) is guilty of violating copyrights in a case brought by French publishers against the search giant’s digital books project. Google will have to pay €300,000 ($430,000) in damages and interest to French publisher La Martiniere, the AP reported. The search giant was also ordered to pay €10,000 ($14,330) per day until it takes down portions of the French books from its online database. In a separate European legal proceeding, Google plans to modify the way its Street View photo mapping service operates in Switzerland, following complaints that it did not do enough to protect individuals’ privacy, Reuters reported.
Read more...
 
Microsoft's Bluetooth Keyboard and Numeric Pad

Sept. 9, 2009
Microsoft announced its thinnest keyboard ever — the Bluetooth Mobile Keyboard 6000 — made exclusively for Bluetooth notebook and desktop computers.

Read more...
 

Data structures & Algorithms - Multiple Choice Questions (MCQs) - Objective Set 3 PDF Print E-mail
Multiple Choice Questions (MCQs) - MCQs from Data Structures and Algorithms

Following are the multiple choice questions (MCQs) or objective questions from Data Structures and Algorithms. The questions are set from the topics such as arrays, records, pointers, linked lists, stacks, queues, recursion, trees, sorting and searching.

 

Set - 3


1.    Which data structure allows deleting data elements from front and inserting at rear?
a. Stacks
b. Queues
c.   Deques
d. Binary search tree

2.    Identify the data structure which allows deletions at both ends of the list but insertion at only one end.
a. Input-restricted deque
b. Output-restricted deque
c.   Priority queues
d. None of above

3.    Which of the following data structure is non-linear type?
a. Strings
b. Lists
c.   Stacks
d. None of above

4.    Which of the following data structure is linear type?
a. Strings
b. Lists
c.   Queues
d. All of above

5.    To represent hierarchical relationship between elements, which data structure is suitable?
a. Deque
b. Priority
c.   Tree
d. All of above

6.    A binary tree whose every node has either zero or two children is called
a. Complete binary tree
b. Binary search tree
c.   Extended binary tree
d. None of above

7.    The depth of a complete binary tree is given by
a. Dn = n log2n
b. Dn = n log2n+1
c.   Dn = log2n
d. Dn = log2n+1

8.    When representing any algebraic expression E which uses only binary operations in a 2-tree,
a. the variable in E will appear as external nodes and operations in internal nodes
b. the operations in E will appear as external nodes and variables in internal nodes
c.   the variables and operations in E will appear only in internal nodes
d. the variables and operations in E will appear only in external nodes

9.    A binary tree can easily be converted into q 2-tree
a. by replacing each empty sub tree by a new internal node
b. by inserting an internal nodes for non-empty node
c.   by inserting an external nodes for non-empty node
d. by replacing each empty sub tree by a new external node

10.  When converting binary tree into extended binary tree, all the original nodes in binary tree are
a. internal nodes on extended tree
b. external nodes on extended tree
c.   vanished on extended tree
d. None of above

11. The post order traversal of a binary tree is DEBFCA. Find out the pre order traversal
a. ABFCDE
b. ADBFEC
c.   ABDECF
d. ABDCEF

12.  Which of the following sorting algorithm is of divide-and-conquer type?
a. Bubble sort
b. Insertion sort
c.   Quick sort
d. All of above

13.  An algorithm that calls itself directly or indirectly is known as
a. Sub algorithm
b. Recursion
c.   Polish notation
d. Traversal algorithm

14.  In a binary tree, certain null entries are replaced by special pointers which point to nodes higher in the tree for efficiency. These special pointers are called
a. Leaf
b. branch
c.   path
d. thread

15.  The in order traversal of tree will yield a sorted listing of elements of tree in
a. Binary trees
b. Binary search trees
c.   Heaps
d. None of above

16.  In a Heap tree
a. Values in a node is greater than every value in left sub tree and smaller than right sub tree
b. Values in a node is greater than every value in children of it
c.   Both of above conditions applies
d. None of above conditions applies

17.  In a graph if e=[u, v], Then u and v are called
a. endpoints of e
b. adjacent nodes
c.   neighbors
d. all of above

18.  A connected graph T without any cycles is called
a. a tree graph
b. free tree
c.   a tree
d. All of above

19.  In a graph if e=(u, v) means
a. u is adjacent to v but v is not adjacent to u
b. e begins at u and ends at v
c.   u is processor and v is successor
d. both b and c

20. If every node u in G is adjacent to every other node v in G, A graph is said to be
a. isolated
b. complete
c.   finite
d. strongly connected

 



Answers:



 

1.    Which data structure allows deleting data elements from front and inserting at rear?
b. Queues

2.    Identify the data structure which allows deletions at both ends of the list but insertion at only one end.
a. Input-restricted deque

3.    Which of the following data structure is non-linear type?
d. None of above

4.    Which of the following data structure is linear type?
d. All of above

5.    To represent hierarchical relationship between elements, which data structure is suitable?
c.   Tree

6.    A binary tree whose every node has either zero or two children is called
c. Extended binary tree

7.    The depth of a complete binary tree is given by
d. Dn =  log2n + 1

8.    When representing any algebraic expression E which uses only binary operations in a 2-tree,
a. the variable in E will appear as external nodes and operations in internal nodes

9.    A binary tree can easily be converted into q 2-tree
d. by replacing each empty sub tree by a new external node

10.  When converting binary tree into extended binary tree, all the original nodes in binary tree are
a. internal nodes on extended tree

11. The post order traversal of a binary tree is DEBFCA. Find out the pre order traversal
c.   ABDECF

12.  Which of the following sorting algorithm is of divide-and-conquer type?
c.   Quick sort

13.  An algorithm that calls itself directly or indirectly is known as
b. Recursion

14.  In a binary tree, certain null entries are replaced by special pointers which point to nodes higher in the tree for efficiency. These special pointers are called
d. thread

15.  The in order traversal of tree will yield a sorted listing of elements of tree in
b. Binary search trees

16.  In a Heap tree
b. Values in a node is greater than every value in children of it

17.  In a graph if e=[u, v], Then u and v are called
d. all of above

18.  A connected graph T without any cycles is called
d. All of above

19.  In a graph if e=(u, v) means
d. both b and c

20. If every node u in G is adjacent to every other node v in G, A graph is said to be
b. complete
 

Composed and Published at PS Exam by Jamuna
Comments (2)
  • rachana
    avatar

    hey ther,in que no 5 u hav asked not suitable n in the answers u hav chosen option which is suitable

  • Suresh Khanal  - Corrected
    avatar

    The question had to be 'suitable'.

Write comment
Your Contact Details:
Gravatar enabled
Comment:
<strong> <em> <span style="text-decoration:underline;"> <a target=' /> [quote] [code] <img />   
:D:angry::angry-red::evil::idea::love::x:no-comments::ooo::pirate::?::(
:sleep::););)):0
Security
Please input the anti-spam code that you can read in the image.
 

Disclaimer

PS Exam is all about Computer Science and Computer Jobs Exam Preparation, for those who are pursuing Career in Information Technology Field!

 

Our revenue source is advertisements and provide you Free Multiple Choice Questions, Free Quizes, Ebooks and Class Notes, Questions and Answers, Resources to help you prepare better, all for FREE. This site uses Google Adsense and other third party advertisements. The links with double underline are advertisements from Infolinks.

 

Get contents in email instantly

Enter your email address:

 

PS Exam on Facebook

Who's Online

We have 30 guests online

Sponsored