Implementing Automation for Cisco Enterprise Solutions (ENAUTO) — Question 93
Which two actions do Python virtual environments allow users to perform? (Choose two.)
Answer options
- A. Simplify the CI/CD pipeline when checking a project into a version control system, such as Git.
- B. Efficiently port code between different languages, such as JavaScript and Python.
- C. Run and simulate other operating systems within a development environment.
- D. Quickly create any Python environment for testing and debugging purposes.
- E. Quickly create an isolated Python environment with module dependencies.
Correct answer: D, E
Explanation
The correct answers are D and E because Python virtual environments facilitate the rapid creation of isolated environments tailored for testing and debugging, as well as managing module dependencies. Options A, B, and C are not relevant to the core functionality of virtual environments in Python, which focuses on environment isolation and dependency management.