
ALL the edges in a MST are "light edges" crossing some cut.
For e to be included in the MST, it has to be the light edge crossing the cut.
For e to be a light edge, all edges should weigh equal to e here, because e is the max weight here.
So, Option A is True.
This question can, however, easily be solved via counter examples.
PS: Note that all the edges in MST are light edges (minimum-weight edges) crossing the cut. But that doesn't mean if any edge is a light edge crossing some cut, it must be in MST.
Eg: Light edges crossing the cut = {A,B,C,D,E,F,G}
Edges included in MST = {A,B,C,D}
PPS: Read CLRS 3rd edition pages 625 to 630. You could solve probably every GATE MST question through those five pages.