1

  1. Degree of vertices:

    title: Correct answer.
  2. It is not a path as there is no valid path between and .

    title: Correct answer.
    A path is a sequence of vertices travelling along edges, but there is no edge between $v_2$ and $v_5$.
  3. It is a simple cycle as there are no duplicate edges.

    title: Correct answer.
  4. Adjacency matrix:

    title: Correct answer.

2

graph A {
	node[shape=point]
 
	a--f,e,d
	b--c,d,e
	f--c,e
	d--c
}
 
graph B {
	node[shape=point]
 
	1--2,3,5
	2--3,6
	4--5,6
	5--6
}

Consider the invariant “containing two disjoint subgraphs”. The invariant holds for but not for , hence the graphs are not isomorphic.

title: Wrong answer.
You can show an isomorphism by taking edges-to-edges and non-edges to non-edges using:
 
$$
	g(a) = 1, \, g(b) = 4, \, g(c) = 6, \, g(d) = 5, \, g(e) = 3, \, g(f) = 2
$$