//Bridge/Cut-edge if after deleting the edge the Graph is not connected anymore.
I think its not true because you could build a Graph G with 2k disconnected-components where in each component exists one node with degree 2k-1. And then you connect all these nodes with degree 2k-1 with a single node in the middle which has degree 2k --> G becomes a connected Graph. And if you delete any of the edges which connect the node in the middle with one of the components you get a disconnected Graph. Hence there exists a bridge.
Can somebody verify my solution or tell me if i made a mistake? And i still need to formalize my solution obviously.
Instead of trying for a counterexample (which would be futile), try instead for a proof.
Hints:
Suppose edge $ab$ is a bridge of $G$, and let $H=G-ab$.