Quiznetik

Data Structure and Algorithms (DSA) | Set 4

1. The complexity of the average case of an algorithm is

Correct : A. Much more complicated to analyze than that of worst case

2. The following data structure allows deleting data elements from front and inserting at rear

Correct : B. Queues

3. This data structure allows deletions at both ends of the list but insertion at only one end.

Correct : A. Input-restricted deque

4. The following data structure is non-linear type

Correct : D. None of the above

5. The following data structure is linear type

Correct : D. All of the above

6. To represent hierarchical relationship be- tween elements, the following data structure is not suitable

Correct : C. Tree

7. A binary tree whose every node has either zero or two children is called

Correct : C. Extended binary tree

8. The depth of a complete binary tree is given by

Correct : D. Dn = log2n+1

9. The complexity of Binary search algorithm is

Correct : B. O(log )

10. The complexity of Bubble sort algorithm is

Correct : B. O (n2)

11. When in order traversing a tree resulted E A C K F H D B G; the preorder traversal would return

Correct : B. FAEKCDHGB

12. When representing any algebraic expression E the following uses only binary operations in a 2-tree

Correct : A. the variable in E will appear as external nodes and operations in internal nodes

13. When converting binary tree into extended binary tree, all the original nodes in binary tree are

Correct : A. internal nodes on extended tree

14. The post order traversal of a binary tree is DEBFCA. Find out the pre order traversal

Correct : C. ABDECF

15. Which of the following data structure is lin- ear data structure?

Correct : C. Arrays

16. The operation of processing each element in the list is known as

Correct : C. Traversal

17. Finding the location of the element with a given value is called

Correct : B. Search

18. Arrays are best data structures for

Correct : A. relatively permanent collections of data

19. Linked lists are best suited for

Correct : B. the size of the structure and the data in the structure are constantly changing

20. Each array declaration need not give, implicitly or explicitly, the information about the

Correct : C. first data from the set to be stored

21. The complexity of merge sort algorithm is

Correct : C. O(n log n)

22. The indirect change of the values of a vari- able in one module by another module is called

Correct : C. side effect

23. Two main measures for the efficiency of an algorithm are

Correct : A. Time and space

24. The time factor when determining the effi- ciency of algorithm is measured by

Correct : A. Counting the number of key operations

25. The space factor when determining the effi- ciency of algorithm is measured by

Correct : A. Counting the maximum memory needed by the algorithm

26. All the above* Which of the following data structures are indexed structures

Correct : A. linear arrays

27. Which of the following is not the required condition for binary search algorithm

Correct : A. there must be mechanism to delete and/ or insert elements in list

28. Which of the following is not a limitation of binary search algorithm ?

Correct : A. binary search algorithm is not efficient when the data elements are more than 1000.

29. Two dimensional arrays are also called

Correct : C. both of the above

30. The term “push” and “pop” is related to the

Correct : C. stacks

31. A data structure where elements can be added or removed at either end but not in the middle is referred as

Correct : D. Deque

32. The following sorting algorithm is of divide- and-conquer type

Correct : C. Quick sort

33. An algorithm that calls itself directly or indi- rectly is known as

Correct : A. Recursion

34. The elements of an array are stored suc- cessively in memory cells because

Correct : A. by this way computer can keep track only the address of the first element and the addresses of other elements can be calculated

35. The memory address of the first element of an array is called

Correct : A. base address

36. The memory address of fifth element of an array can be calculated by the formula

Correct : C. LOC(Array[5]=Base(Array)+w(5-lower bou

37. The following data structure can’t store the non-homogeneous data elements

Correct : A. Arrays

38. The in order traversal of tree will yield a sorted listing of elements of tree in

Correct : B. Binary search trees

39. In a Heap tree values in a node is greater than

Correct : B. every value in children of it

40. In a graph if e=[u, v], Then u and v are called

Correct : D. all of the above

41. A connected graph T without any cycles is called

Correct : D. All of the above

42. The difference between linear array and a record is

Correct : D. All of above

43. The following data structure store the ho- mogeneous data elements

Correct : B. Records

44. Which of the following data structure is not linear data structure?

Correct : C. A and B are true