Recall & Review
beginner
What is a directed graph?
A directed graph is a set of points called vertices connected by edges that have a direction. Each edge goes from one vertex to another specific vertex.
Click to reveal answer
beginner
What is an undirected graph?
An undirected graph is a set of vertices connected by edges that do not have a direction. The connection between two vertices is mutual.
Click to reveal answer
intermediate
How does edge direction affect graph traversal?
In directed graphs, you can only move along edges in their given direction. In undirected graphs, you can move freely between connected vertices both ways.
Click to reveal answer
beginner
Give a real-life example of a directed graph.
A social media follower network is a directed graph because one person can follow another without the follow being mutual.
Click to reveal answer
beginner
Give a real-life example of an undirected graph.
A friendship network is an undirected graph because friendship is usually mutual, so the connection goes both ways.
Click to reveal answer
Which type of graph has edges with a specific direction?
✗ Incorrect
Directed graphs have edges that point from one vertex to another, showing direction.
In an undirected graph, how do edges connect vertices?
✗ Incorrect
Undirected graph edges connect vertices in both directions equally.
Which graph type would best represent a one-way street map?
✗ Incorrect
One-way streets have direction, so a directed graph models them well.
If you can travel back and forth freely between two points, the graph is likely:
✗ Incorrect
Undirected graphs allow movement in both directions between connected vertices.
Which of these is NOT a property of directed graphs?
✗ Incorrect
Directed graph edges do not necessarily connect vertices mutually; they have a specific direction.
Explain the main difference between directed and undirected graphs with examples.
Think about whether connections go one way or both ways.
You got /4 concepts.
Describe how edge direction affects movement in a graph.
Consider how you can travel between points.
You got /3 concepts.