Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged goclasses_da_dsa_tw6
2
2 votes
1
1 answer
447
447 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 1
Consider the given two statements.$\mathrm{S} 1:$ Depth-first search is asymptotically faster than breadth-first search.$\mathrm{S} 2:$ Deleting an element from a binary ...
GO Classes
447
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
one-mark
+
–
3
3 votes
3
3 answers
659
659 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 2
Consider the given graph $\text{G}.$ Traversal trees $\text{T1}$ and $\text{T2}$ (given below) are made by DFS or BFS traversals starting from s..Which of the following i...
GO Classes
659
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
one-mark
multiple-selects
+
–
3
3 votes
1
1 answer
370
370 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 3
Let $\text{G = (V, E)}$ be a simple undirected graph, and $s$ be a particular vertex in it called the source. For $x \in \text{V},$ let $d(x)$ denote the shortest distanc...
GO Classes
370
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-search
breadth-first-search
one-mark
multiple-selects
+
–
0
0 votes
2
2 answers
170
170 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 4
Consider the below weighted graph where weight of the edge $e$ is written as $w(e).$If we run Dijkstra's algorithm with $s=0$, in which order will the vertices be deleted...
GO Classes
170
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
dijkstras-algorithm
one-mark
+
–
0
0 votes
1
1 answer
211
211 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 5
Consider performing a depth-first search (DFS) on an undirected and unweighted graph $G$ starting at vertex $s$. For any vertex $u$ in $G, d[u]$ is the length of the shor...
GO Classes
211
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
one-mark
+
–
0
0 votes
2
2 answers
251
251 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 6
Which of the following is/are TRUE ?If we perform DFS on an undirected graph, there are no cross edges.If the DFS tree has no back edges, then there are no cycles in the ...
GO Classes
251
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
two-marks
multiple-selects
+
–
1
1 vote
1
1 answer
325
325 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 7
Which of the following is correct option about $\mathrm{S} 1$ and $\mathrm{S} 2?$$\mathrm{S} 1:$ If $\text{G}$ is a weighted graph with $n$ vertices and $m$ edges that do...
GO Classes
325
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
bellman-ford
two-marks
+
–
0
0 votes
1
1 answer
229
229 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 8
Consider the following directed, weighted graph:Even though the graph has negative weight edges, we use Dijkstra’s algorithm to calculate supposedly shortest paths from A...
GO Classes
229
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
dijkstras-algorithm
two-marks
multiple-selects
+
–
2
2 votes
1
1 answer
350
350 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 9
Which of the following is/are TRUE?Dijkstra's algorithm may not terminate if the graph contains negative-weight edges.Given a graph $\text{G = (V, E)}$ with positive edge...
GO Classes
350
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
shortest-path
two-marks
multiple-selects
+
–
1
1 vote
1
1 answer
267
267 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 10
Each of the figures below represents a partial spanning tree with bold edges. Determine whether it could possibly be obtained from (a prematurely stopped) Prim’s algorith...
GO Classes
267
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
two-marks
+
–
1
1 vote
1
1 answer
386
386 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 11
For which of the following does there exist a simple undirected graph $\mathrm{G}=(\mathrm{V}, \mathrm{E})$ satisfying the specified conditions?$\text{G}$ has $3$ compone...
GO Classes
386
views
asked
Oct 16, 2024
Graph Theory
goclasses_da_dsa_tw6
goclasses
graph-theory
degree-of-graph
two-marks
+
–
1
1 vote
1
1 answer
229
229 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 12
Let $\text{G = (V, E)}$ be a weighted directed graph. The shortest path from a node $s \in \text{V}$ to a node $t \in \text{V}$ will remain unchanged if: (Multiple option...
GO Classes
229
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
shortest-path
two-marks
multiple-selects
+
–
0
0 votes
1
1 answer
278
278 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 13
Which of the following are CORRECT for Depth-First Search (DFS) on the graphs?Let $n$ be greater than $2$ in all options.DFS on a directed graph with $n$ vertices and $n$...
GO Classes
278
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
depth-first-search2-marks
multiple-selects
+
–
0
0 votes
1
1 answer
249
249 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 14
A way to transform one undirected simple graph into another is by obtaining its subdivision. Intuitively, the subdivision of an undirected graph $\mathrm{G},$ denoted $\t...
GO Classes
249
views
asked
Oct 16, 2024
Graph Theory
goclasses_da_dsa_tw6
goclasses
graph-theory
graph-planarity
bipartite-graph
two-marks
multiple-selects
+
–
2
2 votes
1
1 answer
377
377 views
GO Classes Test Series | Data Structures and Algorithms | Basic graph algorithms: traversals and Shortest path | Question: 15
Consider a directed graph $G$ with a source vertex $s, a$ destination $t$, and nonnegative edge lengths. Under what conditions is the shortest $s-t$ path guaranteed to be...
GO Classes
377
views
asked
Oct 16, 2024
Algorithms
goclasses_da_dsa_tw6
goclasses
algorithms
graph-algorithms
two-marks
+
–
To see more, click for the
full list of questions
or
popular tags
.