C = isConnected G
A graph is connected when there exists a path of edges between any two vertices in the graph.
i1 : G = graph({{1,2},{2,3},{3,4},{5,6}},EntryMode=>"edges");
i2 : isConnected G;
The object isConnected is a method function.