Menu

Graphs Questions

MCQ
91.
For some sparse graph an adjacency list is more space efficient against an adjacency matrix.
forum Discussion
MCQ
92.
Time complexity to find if there is an edge between 2 particular vertices is _________
forum Discussion
MCQ
93.
For the given conditions, which of the following is in the correct order of increasing space requirement?
i) Undirected, no weight

ii) Directed, no weight

iii) Directed, weighted

iv) Undirected, weighted
forum Discussion
MCQ
94.
Space complexity for an adjacency list of an undirected graph having large values of V (vertices) and E (edges) is __________
forum Discussion
MCQ
95.
Complete the given snippet of code for the adjacency list representation of a weighted directed graph.
forum Discussion
MCQ
96.
In which case adjacency list is preferred in front of an adjacency matrix?
forum Discussion
MCQ
97.
To create an adjacency list C++
forum Discussion
MCQ
98.
Given a plane graph, G having 2 connected component, having 6 vertices, 7 edges and 4 regions. What will be the number of connected components?
forum Discussion
MCQ
99.
Number of vertices with odd degrees in a graph having a eulerian walk is ________
forum Discussion
MCQ
100.
How many of the following statements are correct?i) All cyclic graphs are complete graphs.ii) All complete graphs are cyclic graphs.iii) All paths are bipartite.iv) All cyclic graphs are bipartite.v) There are cyclic graphs which are complete.
forum Discussion