adplus-dvertising
frame-decoration

Question

What is a star tree?

a.

A tree having a single internal vertex and n-1 leaves

b.

A tree having n vertices arranged in a line

c.

A tree which has 0 or more connected subtrees

d.

A tree which contains n vertices and n-1 cycles

Answer: (a).A tree having a single internal vertex and n-1 leaves

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is a star tree?

Similar Questions

Discover Related MCQs

Q. A polytree is called _______________

Q. The tree elements are called __________

Q. In an n-ary tree, each vertex has at most ______ children.

Q. A linear graph consists of vertices arranged in a line.

Q. Two labeled trees are isomorphic if ____________

Q. A graph which consists of disjoint union of trees is called ______

Q. What is a bipartite graph?

Q. If two cycle graphs Gm and Gn are joined together with a vertex, the number of spanning trees in the new graph is ______

Q. For an n-vertex undirected graph, the time required to find a cycle is ____________

Q. A binary cycle space forms a ______ over the two element field.

Q. If G is a simple graph with n-vertices and n>=3, the condition for G has a Hamiltonian circuit is __________

Q. What is a separable graph?

Q. How many edges are there in a complete graph of order 9?

Q. How many cycles are there in a wheel graph of order 5?

Q. The time complexity to find a Eulerian path in a graph of vertex V and edge E is _____________

Q. The time complexity to find shortest distances by using Dijkstra’s algorithm is __________

Q. Topological sorting of a graph represents _______ of a graph.

Q. In preorder traversal of a binary tree the second step is ____________

Q. An important application of binary tree is ______

Q. From the following code identify the which traversal of a binary tree is this __________

//if node has left child
order(node.left)
//if node has right child
order(node.right)
visit(node)