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

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


1. Two main measures for the efficiency of an algorithm are
a. Processor and memory
b. Complexity and capacity
c. Time and space
d. Data and space
 

2. The time factor when determining the efficiency of algorithm is measured by
a. Counting microseconds
b. Counting the number of key operations
c. Counting the number of statements
d. Counting the kilobytes of algorithm

 

3. The space factor when determining the efficiency of algorithm is measured by
a. Counting the maximum memory needed by the algorithm
b. Counting the minimum memory needed by the algorithm
c. Counting the average memory needed by the algorithm
d. Counting the maximum disk space needed by the algorithm

 

4. Which of the following case does not exist in complexity theory
a. Best case
b. Worst case
c. Average case
d. Null case

 

5. The Worst case occur in linear search algorithm when
a. Item is somewhere in the middle of the array
b. Item is not in the array at all
c. Item is the last element in the array
d. Item is the last element in the array or is not there at all

 

6. The Average case occur in linear search algorithm
a. When Item is somewhere in the middle of the array
b. When Item is not in the array at all
c. When Item is the last element in the array
d. When Item is the last element in the array or is not there at all

 

7. The complexity of the average case of an algorithm is
a. Much more complicated to analyze than that of worst case
b. Much more simpler to analyze than that of worst case
c. Sometimes more complicated and some other times simpler than that of worst case
d. None or above

 

8. The complexity of linear search algorithm is
a. O(n)
b. O(log n)
c. O(n2)
d. O(n log n)

 

9. The complexity of Binary search algorithm is
a. O(n)
b. O(log )
c. O(n2)
d. O(n log n)

 

10. The complexity of Bubble sort algorithm is
a. O(n)
b. O(log n)
c. O(n2)
d. O(n log n)

 

11. The complexity of merge sort algorithm is
a. O(n)
b. O(log n)
c. O(n2)
d. O(n log n)

 

12. The indirect change of the values of a variable in one module by another module is called
a. internal change
b. inter-module change
c. side effect
d. side-module update

 

13. Which of the following data structure is not linear data structure?
a. Arrays
b. Linked lists
c. Both of above
d. None of above

 

14. Which of the following data structure is linear data structure?
a. Trees
b. Graphs
c. Arrays
d. None of above

 

15. The operation of processing each element in the list is known as
a. Sorting
b. Merging
c. Inserting
d. Traversal

 

16. Finding the location of the element with a given value is:
a. Traversal
b. Search
c. Sort
d. None of above

 

17. Arrays are best data structures
a. for relatively permanent collections of data
b. for the size of the structure and the data in the structure are constantly changing
c. for both of above situation
d. for none of above situation

 

18. Linked lists are best suited
a. for relatively permanent collections of data
b. for the size of the structure and the data in the structure are constantly changing
c. for both of above situation
d. for none of above situation

 

19. Each array declaration need not give, implicitly or explicitly, the information about
a. the name of array
b. the data type of array
c. the first data from the set to be stored
d. the index set of the array

 

20. The elements of an array are stored successively in memory cells because
a. by this way computer can keep track only the address of the first element and the addresses of other elements can be calculated
b. the architecture of computer memory does not allow arrays to store other than serially
c. both of above
d. none of above


Answers

 


1. Two main measures for the efficiency of an algorithm are
c. Time and space
 
2. The time factor when determining the efficiency of algorithm is measured by
b. Counting the number of key operations
 
3. The space factor when determining the efficiency of algorithm is measured by
a. Counting the maximum memory needed by the algorithm
 
4. Which of the following case does not exist in complexity theory
d. Null case
 
5. The Worst case occur in linear search algorithm when
d. Item is the last element in the array or is not there at all
 
6. The Average case occur in linear search algorithm
a. When Item is somewhere in the middle of the array
 
7. The complexity of the average case of an algorithm is
a. Much more complicated to analyze than that of worst case
 
8. The complexity of linear search algorithm is
a. O(n)
 
9. The complexity of Binary search algorithm is
b. O(log n)
 
10. The complexity of Bubble sort algorithm is
c. O(n2)
 
11. The complexity of merge sort algorithm is
d. O(n log n)
 
12. The indirect change of the values of a variable in one module by another module is called
c. side effect
 
13. Which of the following data structure is not linear data structure?
d. None of above
 
14. Which of the following data structure is linear data structure?
c. Arrays
 
15. The operation of processing each element in the list is known as
d. Traversal
 
16. Finding the location of the element with a given value is:
b. Search
 
17. Arrays are best data structures
a. for relatively permanent collections of data
 
18. Linked lists are best suited
b. for the size of the structure and the data in the structure are constantly changing
 
19. Each array declaration need not give, implicitly or explicitly, the information about
c. the first data from the set to be stored

20. The elements of an array are stored successively in memory cells because
a. by this way computer can keep track only the address of the first element and the addresses of other elements can be calculated
 
Comments (3)
  • Mudassar  - Excellent
    avatar

    Thanks a lot very Helpful for me :love: :love: :love:

  • Mudassar  - Excellent
    avatar

    :love: :love: :love: :love: :love: :love: :love: :love: :love: :love: Thanks a looot its very helpful material.

  • retha
    avatar

    Thanks for ur help!
    questions r easy!

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

Sponsored