adplus-dvertising
frame-decoration

Question

What is a bipartite graph?

a.

a graph which contains only one cycle

b.

a graph which consists of more than 3 number of vertices

c.

a graph which has odd number of vertices and even number of edges

d.

a graph which contains no cycles of odd length

Answer: (d).a graph which contains no cycles of odd length

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 bipartite graph?

Similar Questions

Discover Related MCQs

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)

Q. What is the minimum height for a binary search tree with 60 nodes?

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

{
//Input:root node of the tree
//Output:None
visitLeft(node)
//if node has left child
traversal(node.left)
visit_Below(node)
//if node has right child
traversal(node.right)
visitRight(node)
}

Q. For the expression (7-(4*5))+(9/3) which of the following is the post order tree traversal?

Q. The time complexity of calculating the sum of all leaf nodes in an n-order binary tree is __________

Q. An immediate application of a Depth First Search traversal is __________

Q. Breadth First Search traversal of a binary tree finds its application in __________

Q. Worst case complexity of Breadth First Search traversal __________