Given a graph, say
g = Graph[{x -> a, y -> c, a -> b,
b -> c, a -> c, d -> c,
a -> d, b -> d},
VertexLabels -> "Name"]

How do I find all vertices in a graph with the maximum degree i.e. a list of all vertices that has the most number of edges, and highlight them in the graph?
In this case, it would be the vertices {a,c}.
Here’s an approach using
DegreeCentrality: