AMU 2026 — Computer PYQ
AMU | Computer | 2026A ___________ complete sub graph and ___________ subset of vertices of a graph G=(V,E) are clique and vertex cover respectively.
Choose the correct answer:
- A.
maximal, minimal
(Correct Answer) - B.
maximal, maximal
- C.
minimal, minimal
- D.
minimal, maximal
maximal, minimal
Explanation
To correctly fill in the blanks, we must look closely at the standard theoretical computer science definitions for both Clique and Vertex Cover in a graph G=(V,E).
Understanding Clique:
A complete subgraph is a subset of vertices where every pair of distinct vertices is connected by an edge.
A Clique is formally defined as a maximal complete subgraph.
"Maximal" means you cannot add any more vertices from the graph to this subgraph without losing its property of being completely connected.
Understanding Vertex Cover:
A vertex cover of a graph is a subset of vertices such that each edge of the graph is incident to at least one vertex in the subset (the vertices "cover" all the edges).
A structural Vertex Cover optimization property focuses on finding a minimal subset of vertices.
"Minimal" means that if you remove even a single vertex from this subset, it will no longer remain a valid vertex cover because some edges will be left uncovered.
Matching the Order:
First blank (Clique) → maximal
Second blank (Vertex Cover) → minimal
Conclusion:
Combining both definitions sequentially yields maximal, minimal, which corresponds to option (a).
