You run a script as an experiment in Azure Machine Learning and have a Run object named `run` that references the experiment run. You need to download the log files generated during the run to a local folder for review. Which two code segments achieve this goal? Each correct answer presents a complete solution. **NOTE:** Each correct selection is worth one point. **Option 1:** ```python run.download_files(prefix='outputs', output_directory='./downloads') ``` **Option 2:** ```python run.get_all_logs(destination='./logs') ``` | Microsoft Certified Azure Data Scientist Associate - DP-100 Quiz - LeetQuiz