0% found this document useful (0 votes)
29 views

Data-Structure-And-Algorithms (Set 4)

dsa mcq

Uploaded by

Surya A
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views

Data-Structure-And-Algorithms (Set 4)

dsa mcq

Uploaded by

Surya A
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

Data Structure and Algorithms (DSA)

4 of 4 sets

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


A. Much more complicated to analyze than that of worst case
B. Much more simpler to analyze than that of worst case
C. Sometimes more complicated and some other times simpler than that of worst case
D. None of the above
Answer:A

302. The following data structure allows deleting data elements from front and
inserting at rear
A. Stacks
o m
B. Queues
. c
C. Deques
te
D. Binary search tree
a
Answer:B
q M
c
M
303. This data structure 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 the above
Answer:A

304. The following data structure is non-linear type


A. Strings
B. Lists
C. Stacks
D. None of the above
Answer:D

305. The following data structure is linear type


A. Strings
B. Lists
C. Queues
D. All of the above
Answer:D

306. To represent hierarchical relationship be- tween elements, the following data
structure is not suitable
A. Deque
B. Priority
C. Tree
D. All of above
Answer:C

307. 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
D. None of above
Answer:C

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


A. Dn = n log2n
B. Dn = n log2n+1
C. Dn = log2n
D. Dn = log2n+1
Answer:D

309. The complexity of Binary search algorithm is


A. O(n)
B. O(log )
C. O(n log n)
D. None of the above
Answer:B

310. The complexity of Bubble sort algorithm is

View all MCQ's at McqMate.com


A. O(n)
B. O (n2)
C. O(n log n)
D. None of the above
Answer:B

311. When in order 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
Answer:B

312. When representing any algebraic expression E the following 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 exter- nal nodes and variables in internal nodes
C. the variables and operations in E will appear only in internal nodes
D. None of the above
Answer:A

313. 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 the above
Answer:A

314. The post order traversal of a binary tree is DEBFCA. Find out the pre order
traversal
A. ABFCDE
B. ADBFEC
C. ABDECF
D. None of the above

View all MCQ's at McqMate.com


Answer:C

315. Which of the following data structure is lin- ear data structure?
A. Trees
B. Graphs
C. Arrays
D. None of the above
Answer:C

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


A. Merging
B. Inserting
C. Traversal
D. All the above
Answer:C

317. Finding the location of the element with a given value is called
A. Traversal
B. Search
C. Sort
D. All of the above
Answer:B

318. Arrays are best data structures for


A. relatively permanent collections of data
B. the size of the structure and the data in the structure are constantly changing
C. both of above situation
D. none of above situation
Answer:A

319. Linked lists are best suited for


A. relatively permanent collections of data
B. the size of the structure and the data in the structure are constantly changing
C. both of above situation
D. none of above situation

View all MCQ's at McqMate.com


Answer:B

320. Each array declaration need not give, implicitly or explicitly, the information
about the
A. name of array
B. data type of array
C. first data from the set to be stored
D. index set of the array
Answer:C

321. The complexity of merge sort algorithm is


A. O(n)
B. O(log n)
C. O(n log n)
D. None of these
Answer:C

322. The indirect change of the values of a vari- able in one module by another
module is called
A. internal change
B. inter-module change
C. side effect
D. all the above
Answer:C

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


A. Time and space
B. Processor and memory
C. Complexity and capacity
D. Data and space
Answer:A

324. The time factor when determining the effi- ciency of algorithm is measured by
A. Counting the number of key operations
B. Counting the number of statements
C. Counting the kilobytes of algorithm

View all MCQ's at McqMate.com


D. None of the above
Answer:A

325. The space factor when determining the effi- ciency of algorithm 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
Answer:A

326. All the above* Which of the following data structures are indexed structures
A. linear arrays
B. linked lists
C. both of above
D. none of above
Answer:A

327. Which of the following is not the required condition for binary search
algorithm
A. there must be mechanism to delete and/ or insert elements in list
B. the list must be sorted
C. there should be the direct access to the middle element in any sublist
D. none of the above
Answer:A

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


A. binary search algorithm is not efficient when the data elements are more than 1000.
B. must use a sorted array
C. requirement of sorted array is expen- sive when a lot of insertion and dele- tions are needed
D. there must be a mechanism to access middle element directly
Answer:A

329. Two dimensional arrays are also called


A. tables arrays
B. matrix arrays

View all MCQ's at McqMate.com


C. both of the above
D. none of the above
Answer:C

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


A. Array
B. Lists
C. stacks
D. all of above
Answer:C

331. A data structure where elements can be added or removed at either end but
not in the middle is referred as
A. Linked lists
B. Stacks
C. Queues
D. Deque
Answer:D

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


A. Bubble sort
B. Insertion sort
C. Quick sort
D. None of the above
Answer:C

Explanation:- Quick sort is a divide-and-conquer sorting algorithm that works by partitioning a list of
items into two smaller lists and then sorting each of these lists recursively. It is an efficient and
widely used algorithm, with an average case time complexity of O(n log n).

Bubble sort and insertion sort are both comparison-based sorting algorithms, but they do not use the
divide-and-conquer approach. Bubble sort works by repeatedly swapping adjacent elements that are
out of order, while insertion sort works by iteratively inserting each element into its correct position in
the sorted list. Both of these algorithms have a time complexity of O(n^2) in the worst case.

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

View all MCQ's at McqMate.com


A. Recursion
B. Polish notation
C. Traversal algorithm
D. None of the above
Answer:A

334. The elements of an array are stored suc- cessively 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. A and B both false
D. A and B both true
Answer:A

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


A. base address
B. floor address
C. foundation address
D. first address
Answer:A

336. The memory address of fifth element of an array can be calculated by the
formula
A. LOC(Array[5])=Base(Array[5])+(5-lower boun(D), where w is the number of words per memory
cell for the array
B. LOC(Array[5])=Base(Array[4])+(5-Upper boun(D), where w is the number of words per memory
cell for the array
C. LOC(Array[5]=Base(Array)+w(5-lower bou
D. , where w is the number of words per memory cell for the array
Answer:C

337. The following data structure can’t store the non-homogeneous data elements
A. Arrays
B. Records
C. Pointers

View all MCQ's at McqMate.com


D. None of the above
Answer:A

338. 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
Answer:B

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


A. every value in left sub tree and smaller than right sub tree
B. every value in children of it
C. Both of above conditions are true
D. None of above conditions are true
Answer:B

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


A. endpoints of e
B. adjacent nodes
C. neighbors
D. all of the above
Answer:D

341. A connected graph T without any cycles is called


A. tree graph
B. free tree
C. tree
D. All of the above
Answer:D

342. The difference between linear array and a record is


A. An array is suitable for homogeneous data but hte data items in a record may have different
data type
B. In a record, there may not be a natural ordering in opposed to linear array.

View all MCQ's at McqMate.com


C. A record form a hierarchical structure but a linear array does not
D. All of above
Answer:D

343. The following data structure store the ho- mogeneous data elements
A. Arrays
B. Records
C. Pointers
D. None of the above
Answer:B

344. Which of the following data structure is not linear data structure?
A. Arrays
B. Linked lists
C. A and B are true
D. None is true
Answer:C

View all MCQ's at McqMate.com

You might also like