Data Structures And Algorithms MCQ Questions
Data Structures And Algorithms MCQ Questions
MCQ Questions
1. When determining the efficiency of algorithm, the space factor 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. If the values of a variable in one module is indirectly changed by another module, this
situation is called
a. internal change
b. inter-module change
c. side effect
d. side-module update
11. 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
12. 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. Which of the following case does not exist in complexity theory
a. Best case
b. Worst case
c. Average case
d. Null case
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
11 – A 12 – 13 – A 14 – C 15 – B 16 – D 17 – 18 – A 19 – C 20 – B
D D
a. elementary items
b. atoms
c. scalars
d. all of above
d. none of above
b. data elements in linked list need not be stored in adjacent space in memory
d. linked lists are collection of the nodes that contain information part and next pointer
b. FAEKCDHGB
c. EAFKHDCBG
d. FEAKDCHBG
a. floor address
b. foundation address
c. first address
d. base address
a. An array is suitable for homogeneous data but the data items in a record may have different
data type
d. All of above
a. FIFO lists
b. LIFO list
c. Piles
d. Push-down lists
a. linear arrays
b. linked lists
c. both of above
d. none of above
a. array
b. lists
c. stacks
d. all of above
10. The memory address of fifth element of an array can be calculated by the formula
d. None of above
a. tables arrays
b. matrix arrays
c. both of above
d. none of above
12. 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
13. The situation when in a linked list START=NULL is
a. underflow
b. overflow
c. housefull
d. saturated
15. Which of the following data structure can’t store the non-homogeneous data elements?
a. Arrays
b. Records
c. Pointers
d. None
16. Which of the following data structure store the homogeneous data elements?
a. Arrays
b. Records
c. Pointers
d. None
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.
d. pointer array
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. 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
d. none of above
11- c 12- b 13- a 14- a 15- a 16- a 17- d 18- 19- d 20- c
a