Question
Easy

In directed graph G(V, E) where $V=\{P,Q,R,S,T\}$ and $E=\{PQ, RS, TP, PS, QR, PT, ST, QP, RQ, TS\}$, the vertex with maximum in-degree is _ and vertex with maximum out-degree is _ .

1
P, S
2
T, Q
3
Q, R
4
S, P
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Data Structures (Through C++)
Topic: Data Structure Concepts
Correct Answer
Option D
Explanation

The correct option is (4): S, P. In a directed graph, the in-degree of a vertex is the number of edges pointing to it, and the out-degree is the number of edges pointing away from it. To find the maximum degrees, we must systematically calculate the in-degree and out-degree for every vertex in the set $V=\\{P,Q,R,S,T\\}$ based on the given edge set $E=\\{PQ, RS, TP, PS, QR, PT, ST, QP,…Read More

In directed graph gv - HTET Level 3 | Clear Cutoff