Data Structures & Algorithms - Multiple Choice Questions (MCQS) - Objective
Data Structures & Algorithms - Multiple Choice Questions (MCQS) - Objective
Objective
4 Data structures and Algorithms (MCQs)
Set - 1
Collection on http://www.cs-mcqs.blogspot.com
a. Counting microseconds
Collection on http://www.cs-mcqs.blogspot.com
a. Best case
b. Worst case
c. Average case
d. Null case
Collection on http://www.cs-mcqs.blogspot.com
Collection on http://www.cs-mcqs.blogspot.com
6. The Average case occur in linear search algorithm
d. When Item is the last element in the array or is not there at all
Collection on http://www.cs-mcqs.blogspot.com
c. Sometimes more complicated and some other times simpler than that of worst case
d. None or above
Collection on http://www.cs-mcqs.blogspot.com
a. O(n)
b. O(log n)
c. O(n2)
d. O(n log n)
Collection on http://www.cs-mcqs.blogspot.com
b. O(log )
c. O(n2)
d. O(n log n)
Collection on http://www.cs-mcqs.blogspot.com
a. O(n)
b. O(log n)
c. O(n2)
d. O(n log n)
Collection on http://www.cs-mcqs.blogspot.com
a. O(n)
b. O(log n)
c. O(n2)
d. O(n log n)
Collection on http://www.cs-mcqs.blogspot.com
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
Collection on http://www.cs-mcqs.blogspot.com
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
Collection on http://www.cs-mcqs.blogspot.com
a. Trees
b. Graphs
c. Arrays
d. None of above
Collection on http://www.cs-mcqs.blogspot.com
a. Sorting
b. Merging
c. Inserting
d. Traversal
Collection on http://www.cs-mcqs.blogspot.com
16. Finding the location of the element with a given value is:
a. Traversal
b. Search
c. Sort
d. None of above
Collection on http://www.cs-mcqs.blogspot.com
b. for the size of the structure and the data in the structure are constantly changing
Collection on http://www.cs-mcqs.blogspot.com
b. for the size of the structure and the data in the structure are constantly changing
Collection on http://www.cs-mcqs.blogspot.com
19. Each array declaration need not give, implicitly or explicitly, the information about
a. the name of array
Collection on http://www.cs-mcqs.blogspot.com
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
b. the architecture of computer memory does not allow arrays to store other than serially
c. both of above
d. none of above
Collection on http://www.cs-mcqs.blogspot.com
Answers
d. Null case
a. O(n)
b. O(log n)
c. O(n2)
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
c. Arrays
d. Traversal
16. Finding the location of the element with a given value is:
b. Search
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
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
Set - 2
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
d. None of above
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?
b. there should be the direct access to the middle element in any sublist
b. requirement of sorted array is expensive when a lot of insertion and deletions are needed
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
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
a. elementary items
b. atoms
c. scalars
d. all of above
a. An array is suitable for homogeneous data but hte data items in a record may have different data
type
d. All of above
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
a. underflow
b. overflow
c. housefull
d. saturated
a. underflow
b. overflow
c. housefull
d. saturated
d. none of above
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. linear arrays
4. Which of the following is not the required condition for binary search algorithm?
d. binary search algorithm is not efficient when the data elements are more than 1000.
c. both of above
7. A variable P is called pointer if
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
d. all of above
d. All of above
14. When new data are to be inserted into a data structure, but there is no available space; this
b. overflow
a. underflow
d. none of above
a. FIFO lists
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
Set - 3
1. Which data structure allows deleting data elements from front and inserting at rear?
a. Stacks
b. Queues
c. Deques
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
a. Strings
b. Lists
c. Queues
d. All of above
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
d. None of above
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
10. When converting binary tree into extended binary tree, all the original nodes in binary tree are
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
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
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
c. Heaps
d. None of above
a. endpoints of e
b. adjacent nodes
c. neighbors
d. all of above
a. a tree graph
b. free tree
c. a tree
d. All of above
d. both b and c
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
d. None of above
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
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
10. When converting binary tree into extended binary tree, all the original nodes in binary tree are
11. The post order traversal of a binary tree is DEBFCA. Find out the pre order traversal
c. ABDECF
b. Recursion
14. In a binary tree, certain null entries are replaced by special pointers which point to nodes higher
d. thread
15. The in order traversal of tree will yield a sorted listing of elements of tree in
d. all of above
d. All of above
b. complete