LeetQuiz Logo
Privacy Policy•contact@leetquiz.com
© 2025 LeetQuiz All rights reserved.
Microsoft Certified Azure Data Scientist Associate - DP-100

Microsoft Certified Azure Data Scientist Associate - DP-100

Get started today

Ultimate access to all questions.


You are creating a persistent Azure Machine Learning compute cluster using the Python SDK v2 and must specify the minimum number of required properties.

Which two properties must you define? (Each correct answer presents part of the solution.)

# Corrected code block
compute_cluster = AmlCompute(
    name="cluster-name",
    type="amlcompute",
    size="STANDARD_DS3_v2",
    min_instances=0,
    max_instances=4,
    idle_time_before_scale_down=180
)

Exam-Like




Powered ByGPT-5