Question
(a) Depth - first search is used to traverse a rooted tree.
(b) Pre - order, Post-order and Inorder are used to list the vertices of an ordered rooted tree.
(c) Huffman's algorithm is used to find an optimal binary tree with given weights.
(d) Topological sorting provides a labelling such that the parents have larger labels than their children.
Which of the above statements are true ?
a.
(a) and (b)
b.
(c) and (d)
c.
(a) , (b) and (c)
d.
(a), (b) , (c) and (d)
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Consider the following statements- (a) Depth - first search is used to traverse a rooted tree. (b) Pre - order, Post-order and Inorder are used to list the vertices of an...
Similar Questions
Discover Related MCQs
Q. The inorder and preorder Traversal of binary Tree are dbeafcg and abdecfg respectively.The post order traversal is ______________.
View solution
Q. Level order Traversal of a rooted Tree can be done by starting from root and performing
View solution
Q. The average case occurs in the Linear Search Algorithm when :
View solution
Q. To determine the efficiency of an algorithm the time factor is measured by
View solution
Q. Which of the following algorithms sort n integers, having the range 0 to (n^2 - 1), in ascending order in O(n) time ?
View solution
Q. Which of the following is asymptotically smaller?
View solution
Q. Code blocks allow many algorithms to be implemented with the following parameters:
View solution
Q. Consider f(N) = g(N) + h(N)
Where function g is a measure of the cost of getting from the start node to the current node N and h is an estimate of additional cost of getting from the current node N to the goal node. Then f(N) = h(N) is used in which one of the following algorithms ?
View solution
Q. The reverse polish notation equivalent to the infix expression
((A + B) * C+ D)/(E + F + G)
View solution
Q. Superficially the term "object-oriented", means that, we organize software as a
View solution
Q. The number of different spanning trees in complete graph, K4 and bipartite graph, K2,2 have ____ and ____ respectively.
View solution
Q. When a method in a subclass has the same name and type signatures as a method in the superclass, then the method in the subclass ______ the method in the superclass.
View solution
Q. Consider the following operations performed on a stack of size 5:
Push(a); Pop(); Push(b); Push(c); Pop(); Push(d); Pop(); Pop(); Push(e);
Which of the following statements is correct?
View solution
Q. Suppose you are given a binary tree with n nodes, such that each node has exactly either zero or two children. The maximum height of the tree will be
View solution
Q. Which of the following is not an inherent application of stack?
View solution
Q. In how many ways can the string
A∩B - A ∩ B -A
be fully parenthesized to yield an infix expression ?
View solution
Q. The order of a leaf node in a B+ tree is the maximum number of children it can have. Suppose that block size is 1 kilobytes, the child pointer takes 7 bytes long and search field value takes 14 bytes long. The order of the leaf node is ............
View solution
Q. Which of the following is true for computation time in insertion, deletion and finding maximum and minimum element in a sorted array?
View solution
Q. The seven elements A, B, C, D, E, F and G are pushed onto a stack in reverse order, i.e., starting from G. The stack is popped five times and each element is inserted into a queue. Two elements are deleted from the queue and pushed back onto the stack. Now, one element is popped from the stack. The popped item is ...................
View solution
Q. What features make C++ so powerful ?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Data Structures and Algorithms? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!