Designing and Implementing a Data Science Solution on Azure — Question 93
You create a workspace to include a compute instance by using Azure Machine Learning Studio. You are developing a Python SDK v2 notebook in the workspace.
You need to use Intellisense in the notebook.
What should you do?
Answer options
- A. Stop the compute instance.
- B. Start the compute instance.
- C. Run a %pip magic function on the compute instance.
- D. Run a !pip magic function on the compute instance.
Correct answer: B
Explanation
The correct answer is B because Intellisense requires the compute instance to be running to function properly in the notebook. Stopping the compute instance (A) would prevent Intellisense from working, while running %pip or !pip magic functions (C and D) does not directly enable Intellisense.