Following Are The Multiple Choice Questions
Following Are The Multiple Choice Questions
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
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. 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. 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 indecomposable are called
a. elementary items
b. atoms
c. scalars
d. all of above
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
a. underflow
b. overflow
c. housefull
d. saturated
a. FIFO lists
b. LIFO list
c. Piles
d. Push-down lists
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
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
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
20. When inorder traversing a tree resulted E A C K F H D B G; the preorder traversal would
return
b. FAEKCDHGB