Menu

Graphs Questions

MCQ
71.
On which of the following statements does the time complexity of checking if an edge exists between two particular vertices is not, depends?
forum Discussion
MCQ
72.
Which of these adjacency matrices represents a simple graph?
forum Discussion
MCQ
73.
Given an adjacency matrix A = [ [0, 1, 1], [1, 0, 1], [1, 1, 0] ], how many ways are there in which a vertex can walk to itself using 2 edges.
forum Discussion
MCQ
74.
If A[x+3][y+5] represents an adjacency matrix, which of these could be the value of x and y.
forum Discussion
MCQ
75.
Two directed graphs(G and H) are isomorphic if and only if A=PBP-1, where P and A are adjacency matrices of G and H respectively.
forum Discussion
MCQ
76.
Given the following program, what will be the 3rd number that
forum Discussion
MCQ
77.
For which type of graph, the given program would run infinitely? The Input would be in the form of an adjacency Matrix and n is its dimension (1
forum Discussion
MCQ
78.
Given the following adjacency matrix of a graph(G) determine the number of components in the G. [0 1 1 0 0 0], [1 0 1 0 0 0], [1 1 0 0 0 0], [0 0 0 0 1 0], [0 0 0 1 0 0], [0 0 0 0 0 0].
forum Discussion
MCQ
79.
Incidence matrix and Adjacency matrix of a graph will always have same dimensions?
forum Discussion
MCQ
80.
The column sum in an incidence matrix for a simple graph is __________
forum Discussion