Consider the graph below: ,---- | .--->B<---- C<-. | A | ^ F--. | | v | ^ '-->G | '--->D | | | '----->E--' | | A: B D | B: D | C: B | D: E | E: C F | F: G | G: `---- 1. What is the BFS traversal from A of the graph above? 2. What is the BFS traversal from E of the graph above?