Advanced Graph Terminology

  • 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
| Attempts: 13 | Questions: 20 | Updated: May 20, 2026
Please wait...
Question 1 / 21
🏆 Rank #--
0 %
0/100
Score 0/100

1) The in-degree of a vertex v is:

Explanation

The in-degree of a vertex v is the number of edges entering v because each incoming directed edge contributes one to its in-degree while edges leaving v count toward out-degree, and a loop counts once as incoming and once as outgoing since it begins and ends at v.

Submit
Please wait...
About This Quiz
Advanced Graph Terminology - Quiz

Want to push your graph vocabulary further? In this quiz, you’ll test your understanding of advanced ideas such as connectivity, isomorphism, and structural comparisons. You’ll move from basic identification to applied reasoning, analyzing how graphs behave and relate to one another. Each question builds your intuition for deeper graph theory... see moreconcepts.
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 graph is bipartite if and only if it contains no odd cycle.

Explanation

A graph is bipartite if and only if it contains no odd cycle because any odd-length cycle prevents the vertices from being split into two independent sets without forcing an edge to lie within a set, while conversely any graph free of odd cycles can always be two-colored, which is exactly the condition for bipartiteness.

Submit

3) A complement graph G′ of G is formed by:

Explanation

The complement graph G′ of a graph G is formed by connecting every non-adjacent pair of vertices in G, meaning G′ has the same vertex set as G but replaces non-edges with edges and edges with non-edges so that (u, v) is an edge in G′ exactly when it is not an edge in G.
Submit

4) Every tree is a connected graph with no cycles.

Explanation

The statement “Every tree is a connected graph with no cycles” is true because a tree is defined precisely as an acyclic connected graph, and this property ensures that adding any edge to a tree would create a cycle while removing any existing edge would break its connectivity.

Submit

5) A connected graph with n vertices and n edges must be a tree.

Explanation

A connected graph with n vertices and n edges is not a tree because a tree must have exactly n − 1 edges, so having n edges means there is at least one additional edge beyond the minimal number required for connectivity, guaranteeing the existence of a cycle.

Submit

6) In a directed graph, the sum of all in-degrees equals the sum of all out-degrees.

Explanation

In a directed graph the sum of all in-degrees equals the sum of all out-degrees because each directed edge contributes exactly one out-degree to its tail vertex and one in-degree to its head vertex, making both totals equal to the number of directed edges |E| when summed over the entire vertex set.
Submit

7) The complement of a complete graph Kₙ is an empty graph (no edges).

Explanation

The complement of a complete graph Kₙ is an empty graph because Kₙ already contains every possible edge between its n vertices, leaving no missing edges for the complement to include, so the complement must contain zero edges.

Submit

8) Two graphs G₁ and G₂ are said to be isomorphic if they have the same number of vertices and edges.

Explanation

Two graphs G₁ and G₂ are not necessarily isomorphic merely because they have the same number of vertices and edges, since isomorphism also requires a one-to-one correspondence between vertices that preserves adjacency, meaning the connectivity structure of the graphs must match exactly and not just their counts.

Submit

9) Weighted graphs are always directed.

Explanation

Weighted graphs are not always directed because weights can be assigned to edges in either directed or undirected settings, such as undirected road networks where distances or travel times label edges, so the presence of weights does not imply direction.
Submit

10) In a directed graph (digraph), each edge is represented as:

Explanation

In a directed graph, each edge is represented as an ordered pair (u, v) because direction matters, meaning the edge starts at u and points to v, unlike undirected edges that use unordered pairs {u, v}, and although weights may be added in weighted digraphs, the essential representation is the ordered pair indicating direction.
Submit

11) Identify the correct relation for a regular graph of degree r and n vertices.

Explanation

For a regular graph of degree r with n vertices, each vertex has degree r and the total number of edges is n × r divided by 2 because summing all degrees gives n × r, and by the Handshaking Lemma this must equal 2|E|, so |E| = (n r)/2, with complete graphs appearing as the special case where r = n − 1.

Submit

12) A complete bipartite graph Kₘ,ₙ has:

Explanation

A complete bipartite graph Kₘ,ₙ contains m × n edges because every one of the m vertices in the first partition connects to each of the n vertices in the second partition, creating exactly one edge for each such pair and therefore producing a total equal to the product m times n.

Submit

13) Which statements about weighted graphs are true?

Explanation

Weighted graphs have the property that each edge carries a numerical value called a weight that may represent cost, distance, time, reliability, or capacity, and these weights can occur in either directed or undirected graphs, so weighted graphs are not restricted to one orientation, and classical algorithms such as Dijkstra’s, Bellman–Ford, Prim’s, and Kruskal’s all rely on these weights to compute shortest paths or minimum spanning structures.
Submit

14) A bipartite graph is one in which:

Explanation

Bipartite means vertices can be split into two sets V₁ and V₂ such that each edge connects a vertex in V₁ to one in V₂.

Mathematically: V = V₁ ∪ V₂ with V₁ ∩ V₂ = ∅ and ∀(u,v)∈E, u∈V₁ ⇒ v∈V₂.

A gives the definition: vertices split into two disjoint sets with edges only between the sets.

C gives the key property: a graph is bipartite if and only if it has no odd cycles.

B is false — edges within a group break bipartiteness.

D is false — vertex degree isn’t relevant.

Submit

15) A directed edge from u to v is denoted how?

Explanation

The ordered pair (u,v) places the tail vertex u first and the head vertex v second, indicating direction. Curly braces {u,v} denote unordered pairs used for undirected edges. Square brackets [u,v] are not standard edge notation. The hyphen notation u-v is informal and does not encode direction.

Submit

16) A graph where each pair of distinct vertices is connected by exactly one edge is called what?

Explanation

A complete graph Kn connects every distinct pair of vertices with exactly one edge, giving n(n-1)/2 total edges. A bipartite graph only connects vertices between two partitions. A regular graph has uniform vertex degrees but need not connect all pairs. A planar graph is a drawing property unrelated to completeness.

Submit

17) In a weighted graph, the total cost of a path equals what operation applied to its edge weights?

Explanation

The cost of a path is the sum of the weights of all its edges. Shortest-path algorithms such as Dijkstra's and Bellman-Ford compare paths by their cumulative weight sums to identify the minimum cost route. Option A would produce unreasonably large values. Options B and D do not correctly measure traversal cost.

Submit

18) A vertex whose removal increases the number of connected components is called what?

Explanation

An articulation point, also called a cut vertex, is critical for connectivity. Removing it along with its incident edges disconnects the graph, increasing the component count. A pendant vertex has degree 1 and its removal may not disconnect the graph. A bridge is an edge not a vertex. An isolated vertex has degree 0 and no incident edges to remove.

Submit

19) The complement of an empty graph with n vertices is what?

Explanation

An empty graph contains no edges. Its complement includes all edges absent from the original, which is every possible edge between the n vertices, producing the complete graph Kn with all n(n-1)/2 edges. Options A, B, and D are specific graph structures that only coincide with Kn under very special conditions.

Submit

20) A connected graph with no cycles and n vertices always has how many edges?

Explanation

A tree has exactly n-1 edges, giving minimal connectivity with no redundant paths. Adding any edge creates a cycle and removing any edge disconnects the graph. Option A gives n edges which guarantees at least one cycle. Option B gives n+1 which produces even more cycles. Option D gives n-2 which is insufficient to keep all vertices connected.

Submit
×
Saved
Thank you for your feedback!
View My Results
Cancel
  • All
    All (20)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
The in-degree of a vertex v is:
A graph is bipartite if and only if it contains no odd cycle.
A complement graph G′ of G is formed by:
Every tree is a connected graph with no cycles.
A connected graph with n vertices and n edges must be a tree.
In a directed graph, the sum of all in-degrees equals the sum of all...
The complement of a complete graph Kₙ is an empty graph (no edges).
Two graphs G₁ and G₂ are said to be isomorphic if they have the...
Weighted graphs are always directed.
In a directed graph (digraph), each edge is represented as:
Identify the correct relation for a regular graph of degree r and n...
A complete bipartite graph Kₘ,ₙ has:
Which statements about weighted graphs are true?
A bipartite graph is one in which:
A directed edge from u to v is denoted how?
A graph where each pair of distinct vertices is connected by exactly...
In a weighted graph, the total cost of a path equals what operation...
A vertex whose removal increases the number of connected components is...
The complement of an empty graph with n vertices is what?
A connected graph with no cycles and n vertices always has how many...
play-Mute sad happy unanswered_answer up-hover down-hover success oval cancel Check box square blue
Alert!