1.What is the primary purpose of virtual environments in Python when using Anaconda for data science?
- 1.To speed up the Python compiler
- 2.To enhance CPU performance with Anaconda
- 3.To encrypt Python scripts
- 4.To isolate package installations and dependencies ✓
2.Which command is used to update all packages in an Anaconda environment to their latest versions?
- 1.conda install --all
- 2.conda update --all
- 3.conda upgrade --every ✓
- 4.conda refresh --all
3.What is the purpose of the 'Jupyter Notebook' tool within the Anaconda distribution for data science?
- 1.To create and share documents that contain live code, equations, visualizations, and narrative text ✓
- 2.To compile C++ code for Python extension
- 3.To transform Python scripts into Java applications
- 4.To optimize Python bytecode
4.How can you list all the environments available in your Anaconda setup?
- 1.conda env show
- 2.conda environments list
- 3.conda info --envs ✓
- 4.conda env status
5.What is the default environment created by Anaconda that includes Python and additional packages?
- 1.base_env
- 2.base ✓
- 3.default
- 4.root
6.Which command is used to create a new Anaconda environment with a specified version of Python?
- 1.conda create --name myenv python=3.8 ✓
- 2.conda init new --python 3.8 myenv
- 3.conda new env:myenv py=3.8
- 4.conda start environment python-3.8
7.What effect does the command 'conda deactivate' have in Anaconda?
- 1.It uninstalls the current environment
- 2.It deletes the environment's data
- 3.It saves the environment to a file
- 4.It exits out of the active environment ✓
8.Which package manager is used to install, update, and manage packages in an Anaconda environment?
- 1.npm
- 2.conda ✓
- 3.bundle
- 4.pip3
9.What is the purpose of installing the 'Spyder' IDE in an Anaconda environment for data science?
- 1.To enable JavaScript debugging
- 2.To provide a Python-specific development environment with advanced features for data analysis ✓
- 3.To compile Python code into Java binaries
- 4.To host Python applications on a server
10.Which command would you use to remove a specific package entirely from an Anaconda environment?
- 1.conda delete package_name
- 2.conda remove package_name ✓
- 3.conda erase package_name
- 4.conda uninstall package_name