edited by
23,275 views
60 60 votes

In a connected graph, a bridge is an edge whose removal disconnects the graph. Which one of the following statements is true?

  1. A tree has no bridges
  2. A bridge cannot be part of a simple cycle
  3. Every edge of a clique with size $\geq 3$ is a bridge (A clique is any complete subgraph of a graph)
  4. A graph with bridges cannot have cycle

5 Answers

Best answer
57 57 votes

Bridge / cut edge : A single edge whose removal will disconnect the graph is known as Bridge or cut edge.

  1. Every edge of a tree is a bridge.
  2. A bridge cannot be a part of a single cycle because in a cycle every vertex will be connected with every other vertex in $2$ ways. Even if you remove $1$ way by deleting an edge still the other way will make sure that the graph is connected.
  3. A Clique will never have a bridge because though we remove $1$ edge between any $2$ vertices those $2$ vertices will still be connected with the remaining $(n-2)$ vertices using an edge each.
  4. Red edge in the below graph is clearly a bridge as removing that will produce an isolated vertex.

Correct Answer: $B$

edited by
40 40 votes
Ans B

In a cycle if we remove an edge, it will still be connected. So, bridge cannot be part of a cycle.
5 5 votes
Ans B- bridge cannot be part of a simple cycle
1 1 vote
opt a is false as consider a tree, now every edge acts as a bridge which means removing any edge disconnects the graph so a tree is full of bridges.

opt b A bridge cannot be part of a simple cycle is true because what is a bridge, removal of a bridge disconnects a graph , now in a cycle if we remove any edge then it wont disconnect the graph, so a bridge cannot be part of any cycle

opt c Every edge of a clique with size ≥3 is a bridge (A clique is any complete subgraph of a graph)

now what is a clique ???

==>> we have a graph, and we take a subgraph of that graph G and if that  subgraph itself is complete in nature, then that subgraph is a clique....

now we take a clique , we can also say it as a complete graph and if we remove any edge then also the graph remains connected.

opt d A graph with bridges cannot have cycle is false because in a cycle there can be no bridges but there can be a graph with cycles but bridges are there.
0 0 votes

Since, every edge in a tree is bridge
∴ (A) is false
Since, every edge in a complete graph kn(n≥3) is not a bridge ⇒
(C) is false
Let us consider the following graph G:

This graph has a bridge i.e., edge ‘e’ and a cycle of length ‘3’
∴ (D) is false
Since, in a cycle every edge is not a bridge
∴ (B) is true

Answer:
Position:
Show:

Related questions

35 35 votes
6 answers 6 answers
24.8k
24.8k views
go_editor asked Feb 12, 2015
24,827 views
A graph is self-complementary if it is isomorphic to its complement. For all self-complementary graphs on $n$ vertices, $n$ isA multiple of 4EvenOddCongruent to 0 $mod$ 4...
78 78 votes
5 answers 5 answers
28.2k
28.2k views
go_editor asked Feb 12, 2015
28,191 views
Consider a processor with byte-addressable memory. Assume that all registers, including program counter (PC) and Program Status Word (PSW), are size of two bytes. A stack...
52 52 votes
9 answers 9 answers
21.9k
21.9k views
go_editor asked Feb 12, 2015
21,915 views
Consider the following routing table at an IP router:$$\begin{array}{|l|l|l|} \hline \textbf {Network No} & \textbf {Net Mask} & \textbf{Next Hop} \\\hline \text {128.96...
53 53 votes
4 answers 4 answers
17.9k
17.9k views
go_editor asked Feb 12, 2015
17,875 views
Consider the C program below#include <stdio.h int *A, stkTop; int stkFunc (int opcode, int val) { static int size=0, stkTop=0; switch (opcode) { case -1: size = val; brea...