Menu

Graphs Questions

MCQ
81.
What are the dimensions of an incidence matrix?
forum Discussion
MCQ
82.
The column sum in an incidence matrix for a directed graph having no self loop is __________
forum Discussion
MCQ
83.
Time complexity to check if an edge exists between two vertices would be ___________
forum Discussion
MCQ
84.
The graphs G1 and G2 with their incidences matrices given are Isomorphic.

e1 e2 e3 e4 e5 e6
v1 1 0 0 0 0 0
v2 1 1 0 0 0 1
v3 0 1 1 0 1 0
v4 0 0 1 1 0 0
v5 0 0 0 1 1 1



e1 e2 e3 e4 e5 e6
v1 0 0 1 0 0 0
v2 1 0 1 0 1 0
v3 1 1 0 1 0 0
v4 0 1 0 0 0 1
v5 0 0 0 1 1 1
forum Discussion
MCQ
85.
If a connected Graph (G) contains n vertices what would be the rank of its incidence matrix?
forum Discussion
MCQ
86.
A Graph Structured Stack is a _____________
forum Discussion
MCQ
87.
If a Graph Structured Stack contains {1,2,3,4} {1,5,3,4} {1,6,7,4} and {8,9,7,4}, what would be the source and sink vertices of the DAC?
forum Discussion
MCQ
88.
Graph Structured Stack finds its application in _____________
forum Discussion
MCQ
89.
If in a DAG N sink vertices and M source vertices exists, then the number of possible stacks in the Graph Structured Stack representation would come out to be N*M.
forum Discussion
MCQ
90.
Space complexity for an adjacency list of an undirected graph having large values of V (vertices) and E (edges) is ___________
forum Discussion