6-Data Structures and Algorithms Mcqs With Answers PDF Notes
6-Data Structures and Algorithms Mcqs With Answers PDF Notes
6-Data Structures and Algorithms Mcqs With Answers PDF Notes
WWW.PAKISTANBIX.COM
Pakistanbix.com is an online test preparation website where aspirants can prepare themselves for
all types of entry tests. Users can prepare themselves for CCS, PMS, PPSC, FPSC, BPSC, SPSC,
KPPSC, AJKPSC, NTS, PTS, Headmaster, Lecturer, SST and types of exams. Here users can see
all subjects Mcqs, Daily Current Affairs, Daily Dawn Vocabulary, Online tests/Quiz, Past Papers,
PDF Notes of All Subjects and allothers valueable Data.
All subjects PDF notes are posted here in this section. Users can read all the pdf notes
online or they have choice to download these notes in the the form of Pdf. General
knowledge, Pakistan Affairs, Islamic Studies, English, Everyday Science, Urdu, Maths,
Current Affairs, Pedagogy, Biology, Chemistry, Physics and all subjects pdf notes are
available here. Aspirants of CSS, PMS, FPSC, PPSC, AJKPSC, KPPSC, BPSC, SPSC,
NTS, PTS, OTS, Lecturer, Headmaster, Educators etc can download all material in pdf
form from here.
MCQs
Multiple Choice Questions
http://freepdf-books.com
Data structures & Algorithms - Multiple
Choice Questions (MCQs) - Objective
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
http://freepdf-books.com
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
http://freepdf-books.com
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
16. Finding the location of the element with a given value is:
http://freepdf-books.com
a. Traversal
b. Search
c. Sort
d. None of above
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
http://freepdf-books.com
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
http://freepdf-books.com
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
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
http://freepdf-books.com
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
http://freepdf-books.com
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
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
http://freepdf-books.com
Answers
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
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
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
http://freepdf-books.com
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
19. A data structure where elements can be added or removed at either end but not in
the middle
d. Deque
http://freepdf-books.com
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
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
http://freepdf-books.com
d. None of above
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
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
http://freepdf-books.com
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
http://freepdf-books.com
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
6. A binary tree whose every node has either zero or two children is called
c. Extended binary tree
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
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
http://freepdf-books.com
12. Which of the following sorting algorithm is of divide-and-conquer type?
c. Quick sort
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
http://freepdf-books.com
Useful links for the the preparation of Tests
GK Mcqs: https://www.pakistanbix.com/category/general-knowledge-mcqs/