This is a dedicated watch page for a single video.
Scenario: Pennyworth’s Haberdashery, a long-standing retailer with multiple locations across Greater London, has recently acquired a smaller clothing line based in Madrid. As part of the integration, the company is incorporating its systems into Pennyworth's Microsoft Azure service. Alfred Pennyworth has enlisted your expertise as a Microsoft Azure consultant to oversee the merger. The current focus of the project is the Azure Machine Learning service. The IT team has created an Azure Machine Learning compute target named ComputeOne using the STANDARD_D1 virtual machine image. ComputeOne is presently idle with zero active nodes. A developer has defined a Python variable ws referencing the Azure Machine Learning workspace and executes the following code: python from azureml . core . compute import ComputeTarget , AmlCompute from azureml . core . compute_target import ComputeTargetException the_cluster_name = "ComputeOne" try : the_cluster = ComputeTarget ( workspace = ws , name = the_cluster_name ) print ( "Step1" ) except ComputeTargetException : config = AmlCompute . provisioning_configuration ( vm_size = "STANDARD_DS12_v2" , max_nodes = 4 ) the_cluster = ComputeTarget . create ( ws , the_cluster_name , config ) print ( "Step2" ) Alfred expresses concern that the expected results are not being met and asks whether "Step1" will be printed to the screen. Which of the following is the correct response?