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

Baba

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

www.babapandey.com

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 2 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 - 2


1. The memory address of the first element of an array is called

a. floor address
b. foundation address
c. first address
d. base address
 

2. The memory address of fifth element of an array can be calculated by the formula

a. LOC(Array[5]=Base(Array)+w(5-lower bound), where w is the number of words per memory cell for the array
b. LOC(Array[5])=Base(Array[5])+(5-lower bound), where w is the number of words per memory cell for the array
c. LOC(Array[5])=Base(Array[4])+(5-Upper bound), where w is the number of words per memory cell for the array
d. None of above
 

3. Which of the following data structures are indexed structures?

a. linear arrays
b. linked lists
c. both of above
d. none of above
 

4. Which of the following is not the required condition for binary search algorithm?

a. The list must be sorted
b. there should be the direct access to the middle element in any sublist
c. There must be mechanism to delete and/or insert elements in list
d. none of above
 

5. Which of the following is not a limitation of binary search algorithm?

a. must use a sorted array
b. requirement of sorted array is expensive when a lot of insertion and deletions are needed
c. there must be a mechanism to access middle element directly
d. binary search algorithm is not efficient when the data elements are more than 1000.
 

6. Two dimensional arrays are also called

a. tables arrays
b. matrix arrays
c. both of above
d. none of above
 

7. A variable P is called pointer if

a. P contains the address of an element in DATA.
b. P points to the address of first element in DATA
c. P can store only memory addresses
d. P contain the DATA and the address of DATA
 

8. Which of the following data structure can't store the non-homogeneous data elements?

a. Arrays
b. Records
c. Pointers
d. None
 

9. Which of the following data structure store the homogeneous data elements?

a. Arrays
b. Records
c. Pointers
d. None
 

10. Each data item in a record may be a group item composed of sub-items; those items which are indecomposable are called

a. elementary items
b. atoms
c. scalars
d. all of above
 

11. The difference between linear array and a record is

a. An array is suitable for homogeneous data but hte data items in a record may have different data type
b. In a record, there may not be a natural ordering in opposed to linear array.
c. A record form a hierarchical structure but a lienear array does not
d. All of above
 

12. Which of the following statement is false?

a. Arrays are dense lists and static data structure
b. data elements in linked list need not be stored in adjecent space in memory
c. pointers store the next data element of a list
d. linked lists are collection of the nodes that contain information part and next pointer
 

13. Binary search algorithm can not be applied to

a. sorted linked list
b. sorted binary trees
c. sorted linear array
d. pointer array
 

14. When new data are to be inserted into a data structure, but there is no available space; this situation is usually called

a. underflow
b. overflow
c. housefull
d. saturated
 

15. The situation when in a linked list START=NULL is

a. underflow
b. overflow
c. housefull
d. saturated
 

16. Which of the following is two way list?

a. grounded header list
b. circular header list
c. linked list with header and trailer nodes
d. none of above
 

17. Which of the following name does not relate to stacks?

a. FIFO lists
b. LIFO list
c. Piles
d. Push-down lists
 

18. The term "push" and "pop" is related to the

a. array
b. lists
c. stacks
d. all of above
 

19. A data structure where elements can be added or removed at either end but not in the middle

a. Linked lists
b. Stacks
c. Queues
d. Deque
 

20. When inorder traversing a tree resulted E A C K F H D B G; the preorder traversal would return

a. FAEKCDBHG
b. FAEKCDHGB
c. EAFKHDCBG
d. FEAKDCHBG
 


Answers



1. The memory address of the first element of an array is called
d. base address
 

2. The memory address of fifth element of an array can be calculated by the formula
a. LOC(Array[5]=Base(Array)+w(5-lower bound), where w is the number of words per memory cell for the array
 

3. Which of the following data structures are indexed structures?
a. linear arrays
 

4. Which of the following is not the required condition for binary search algorithm?
c. There must be mechanism to delete and/or insert elements in list
 

5. Which of the following is not a limitation of binary search algorithm?
d. binary search algorithm is not efficient when the data elements are more than 1000.
 

6. Two dimensional arrays are also called
c. both of above
 

7. A variable P is called pointer if
a. P contains the address of an element in DATA.
 

8. Which of the following data structure can't store the non-homogeneous data elements?
a. Arrays
 

9. Which of the following data structure store the non-homogeneous data elements?
b. Records
 

10. Each data item in a record may be a group item composed of sub-items; those items which are indecomposable are called
d. all of above
 

11. The difference between linear array and a record is
d. All of above
 

12. Which of the following statement is false?
c. pointers store the next data element of a list
 

13. Binary search algorithm can not be applied to
a. sorted linked list
 

14. When new data are to be inserted into a data structure, but there is no available space; this situation is usually called
b. overflow
 

15. The situation when in a linked list START=NULL is
a. underflow
 

16. Which of the following is two way list?
d. none of above
 

17. Which of the following name does not relate to stacks?
a. FIFO lists
 

18. The term "push" and "pop" is related to the
c. stacks
 

19. A data structure where elements can be added or removed at either end but not in the middle
d. Deque
 

20. When inorder traversing a tree resulted E A C K F H D B G; the preorder traversal would return
b. FAEKCDHGB
 
Comments (9)
  • pravi Pulekar
    avatar

    answer my question please

  • pravi Pulekar  - data structure and algorithm
    avatar

    how many passes are required to sort an array with five element by using the bubble sort algorithm

  • ekta singh  - reply:how many passes are required to sort an arra
    avatar

    4 passes r required.. :D

  • nitin  - DS Q
    avatar

    q is nice but sir this qq not logical pls send logical q and ans and difine feedback ........... niit leval qu :evil: ans

  • Anonymous
    avatar

    Thanks good question collection

  • Anonymous  - re:
    avatar
    Anonymo us wrote:
    Aloso bad for the teachers, who just copied question from here!and the brilliant students who find the answers from here.... ;))
  • Anonymous
    avatar

    Aloso bad for the teachers, who just copied question from here!and the brilliant students who find the answers from here.... ;))

  • nitin tandon
    avatar

    this is very helpful for the students, employees for interview.
    just going it.........

  • Anonymous
    avatar

    :D Nice

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 39 guests online