Why is traversal of a graph is different from tree?

why is traversal of a graph is different from tree ?

Graph traversals are different from trees since trees don’t have cycles and graph may have cycles in them. One more reason that they’re different is because trees are never disconnected components whereas a graph can have multiple connected components which are not connected to each other.

View image: