A. If adjacency list representation of a graph is used, space is saved for sparse graphs.
B. DFS and BSF can be done in O(V + E) time for adjacency list representation.
C. Search whether a specific edge exists between any two vertices is shorter while using adjacency list representation.
D. Adding a vertex in adjacency list representation is easier than adjacency matrix representation.
E. DFS and BSF can be done O(V^2) time in adjacency matrix representation.