(a)
While traversing the graph bydepth-first search, the vertex A is traversed first. From A there are two options B and F and through A traversal is done to B.
From vertex B two options are C and E. Take E as the next vertex then D then using depth first search, go through node H, G and last traverse F. Figure showing graph traversal by depth first search is:

Edge AB in black color is the main edge called tree edge. The edge in blue color for edge AF is called back edge and the edge BE is called as forward edge.
Here the tree edges for the given graph are . The forward edges are . And the back edge of the graph is .The tree edges of the given graph are localid="1657775173067" The forward edge is . The back edges are and the cross edge of the graph is . Hence, after applying depth-first search where the order of traversal is .
The pre and post number of each vertex are given as, where 1 is pre vertex and 16 is post vertex. First the pre vertex is obtained and then post vertex of the graph is obtained. The final sequence of the pre and post order are
Hence, pre and post numbers of each vertex are localid="1657775094839" and the order of DFS traversal is .