Degree of a Vertex (Advanced Applications and Extensions)

  • Grade 11th
Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Thames
T
Thames
Community Contributor
Quizzes Created: 11119 | Total Attempts: 9,762,531
| Questions: 20 | Updated: May 20, 2026
Please wait...
Question 1 / 21
🏆 Rank #--
0 %
0/100
Score 0/100

1) In any simple digraph with n vertices, maximum possible out-degree of a vertex is n.

Explanation

False, because in a simple digraph a vertex cannot have an edge to itself, so the maximum possible out-degree is n − 1 rather than n.

Submit
Please wait...
About This Quiz
Degree Of A Vertex (Advanced Applications and Extensions) - Quiz

Ready for more complex degree problems? In this quiz, you’ll work through situations involving multigraphs, weighted edges, and trickier structures. You’ll apply your foundational understanding in new ways, analyze special cases, and sharpen your problem-solving ability. With each step, you’ll deepen your grasp of how degree interacts with real graph... see morescenarios.
see less

2)

What first name or nickname would you like us to use?

You may optionally provide this to label your report, leaderboard, or certificate.

2) A vertex with both in-degree and out-degree equal to 0 is called what type of vertex?

Explanation

An isolated vertex has no incident edges in either direction, giving both in-degree and out-degree of 0. A sink has in-degree greater than 0 but out-degree 0. A source has out-degree greater than 0 but in-degree 0. A leaf has degree 1 in undirected graphs and refers to a tree endpoint.

Submit

3) If vertex A has degree 5 in a 6-vertex simple graph, it is adjacent to how many other vertices?

Explanation

In a simple graph degree counts distinct neighbors since no loops or multiple edges exist. Degree 5 means exactly 5 neighboring vertices. With 6 vertices total the only vertex A cannot connect to is itself, confirming 5 neighbors. Option D would require a loop which is forbidden in simple graphs.

Submit

4) The maximum number of edges in a simple undirected graph with n vertices is what?

Explanation

Each vertex connects to at most n-1 others giving n(n-1) ordered connections. Since undirected edges are unordered each is counted twice in that total, so dividing by 2 gives n(n-1)/2 unique edges. Option A ignores the n-1 factor. Option B uses n+1 instead of n-1. Option D fails to divide by 2.

Submit

5) In an undirected graph, if every vertex has degree 2, the graph consists of one or more what?

Explanation

Degree 2 at every vertex means each vertex lies on exactly two edges with no branching and no endpoints. This forces edges to connect in closed loops. Trees have leaves of degree 1. Paths have two endpoints of degree 1. Stars have one center of high degree. Only cycles give every vertex exactly degree 2.

Submit

6) A vertex with in-degree 0 and out-degree greater than 0 is called what?

Explanation

A source emits edges but receives none, functioning as a starting point in flow or dependency graphs. A sink is the opposite — it receives edges but emits none. An isolated vertex has both in-degree and out-degree equal to 0. A universal vertex is adjacent to all others, which requires positive in-degree.

Submit

7) In a directed graph, the total number of edges equals the sum of all what and also the sum of all what?

Explanation

Each directed edge contributes 1 to the out-degree of its tail and 1 to the in-degree of its head. Summing all out-degrees counts every edge once from the tail side, giving the edge count. Summing all in-degrees counts every edge once from the head side, giving the same count. Both totals equal the number of edges.

Submit

8) In any undirected graph, the sum of the degrees of all vertices is always an even number.

Explanation

True, because the sum of degrees in any undirected graph equals 2|E|, which is always an even number since twice any integer is even.

Submit

9) If all vertices in a simple graph have even degree, the graph must be connected.

Explanation

False, because having all vertices of even degree does not guarantee connectivity—disconnected structures like several separate cycles can each have all-even degrees yet still form a disconnected graph.

Submit

10) If a vertex has out-degree 0 in a digraph, it’s called a sink.

Explanation

True, because a vertex with out-degree 0 emits no edges and only receives incoming edges, which is exactly the definition of a sink in directed graph terminology.

Submit

11) In a directed graph, the degree of a vertex is the sum of:

Explanation

In digraphs, each vertex v has two measures:

in-degree deg⁻(v): edges entering v

out-degree deg⁺(v): edges leaving v

Total degree = deg⁻(v) + deg⁺(v).

Submit

12) A digraph where every vertex has the same in-degree and out-degree is balanced.

Explanation

True, because a balanced digraph is defined by the condition deg⁺(v) = deg⁻(v) for every vertex v, representing systems with no accumulation or deficit of flow at any node.

Submit

13) In a directed graph, a loop adds 2 to the total degree of its vertex.

Explanation

True, because a loop in a directed or undirected setting simultaneously leaves and enters the same vertex, contributing +1 to in-degree and +1 to out-degree, giving a total degree contribution of 2.

Submit

14) Which relation must always hold for any digraph?

Explanation

Relation A must always hold because each directed edge increases exactly one vertex’s out-degree and exactly one vertex’s in-degree, meaning Σ deg⁺(v) = Σ deg⁻(v) = |E|, and none of the other listed relations consistently hold for all digraphs.

Submit

15) In any undirected weighted graph, if vertex v has incident edge weights 4, 6, and 10, the weighted degree of v is:

Explanation

The weighted degree of v is 20 because in an undirected weighted graph the weighted degree is defined as the sum of the weights of all edges incident to v, so adding 4, 6, and 10 gives 20, which represents the total cost or capacity associated with that vertex.

Submit

16) If a graph has vertices of degrees (2, 2, 3, 3, 4, 4), which statements are true?

Explanation

Statements B and C are true because summing the degrees 2 + 2 + 3 + 3 + 4 + 4 yields 18, and dividing by 2 gives 9 edges according to the Handshaking Lemma, while statement A is false since a regular graph requires all degrees to be equal and statement D is false because there are actually four even-degree vertices (2, 2, 4, 4), not three.

Submit

17) A weighted directed graph represents traffic flow. At a junction v, in-flow = Σ (incoming weights) = 100 cars/hour; out-flow = Σ (outgoing weights) = 95 cars/hour. What does this imply?

Explanation

The correct implication is that the junction accumulates 5 cars per hour because the total in-flow of 100 cars/hour exceeds the out-flow of 95 cars/hour, meaning a net +5 cars/hour build up at that vertex, which reflects the flow-balance principle used in network modeling where excess in-flow indicates accumulation.

Submit

18) A regular digraph with n vertices and constant out-degree r has how many edges?

Explanation

A regular digraph with n vertices and constant out-degree r has n × r edges because each of the n vertices emits exactly r outgoing edges, and since each edge is counted exactly once at its tail, multiplying n by r gives the total number of directed edges in the graph.

Submit

19) In a digraph with 6 vertices and 20 edges, the sum of all in-degrees is:

Explanation

The correct answer is 20 because in a digraph every directed edge contributes exactly one unit to some vertex’s in-degree, so the sum of all in-degrees equals |E| = 20, and by symmetry the total out-degree sum is also 20.

Submit

20) If a directed edge connects vertex A to B, which statement is correct?

Explanation

The correct statement is B because a directed edge A → B leaves A and therefore contributes +1 to A’s out-degree while entering B and contributing +1 to B’s in-degree, illustrating the rule that each directed edge increases one vertex’s out-degree and another vertex’s in-degree, with total in-degrees and total out-degrees both equaling the number of edges.

Submit
×
Saved
Thank you for your feedback!
View My Results
Cancel
  • All
    All (20)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
In any simple digraph with n vertices, maximum possible out-degree of...
A vertex with both in-degree and out-degree equal to 0 is called what...
If vertex A has degree 5 in a 6-vertex simple graph, it is adjacent to...
The maximum number of edges in a simple undirected graph with n...
In an undirected graph, if every vertex has degree 2, the graph...
A vertex with in-degree 0 and out-degree greater than 0 is called...
In a directed graph, the total number of edges equals the sum of all...
In any undirected graph, the sum of the degrees of all vertices is...
If all vertices in a simple graph have even degree, the graph must be...
If a vertex has out-degree 0 in a digraph, it’s called a sink.
In a directed graph, the degree of a vertex is the sum of:
A digraph where every vertex has the same in-degree and out-degree is...
In a directed graph, a loop adds 2 to the total degree of its vertex.
Which relation must always hold for any digraph?
In any undirected weighted graph, if vertex v has incident edge...
If a graph has vertices of degrees (2, 2, 3, 3, 4, 4), which...
A weighted directed graph represents traffic flow. At a junction v,...
A regular digraph with n vertices and constant out-degree r has how...
In a digraph with 6 vertices and 20 edges, the sum of all in-degrees...
If a directed edge connects vertex A to B, which statement is correct?
play-Mute sad happy unanswered_answer up-hover down-hover success oval cancel Check box square blue
Alert!