Implementing Automation for Cisco Enterprise Solutions (ENAUTO) — Question 46
What is a benefit of developing an application in a Python virtual environment?
Answer options
- A. The application operates in multiple target systems simultaneously.
- B. The application supports concurrency or multithreading.
- C. The application operates across systems that have different operating systems.
- D. The development environment is isolated from Python projects that already exist.
Correct answer: D
Explanation
The correct answer, D, highlights the key benefit of using a Python virtual environment, which is the isolation it provides from other Python projects. This ensures that dependencies and packages do not conflict with each other. The other options discuss capabilities that are not directly related to the main advantage of virtual environments.