HOTSPOT A company plans to integrate tests with its build pipelines. The company has two Docket sandbox environments: SandboxA and SandboxB. You observe the following: • SandboxA is configured without the Test Toolkit installed. • SandboxB must be configured from scratch. The Test Toolkit must be installed in SandboxB during configuration. You need to configure the sandbox environments. How should you complete the cmdlets? To answer, select the appropriate options in the answer area. 
Install-TestToolkitToBcContainer for SandboxA, since it's already up and just needs the toolkit. For SandboxB, you'd want to use IncludeTestToolkit because you're building it from scratch and want the toolkit as part of initial setup. Seen this pattern in a few practice dumps. Pretty sure that's what they're after but open if anyone sees it differently.
Does it mention if you need to recreate SandboxA or just update? For an existing container, I'd usually go with Install-TestToolkitToBcContainer since it just adds the toolkit. But for a new build like SandboxB, you'd use IncludeTestToolkit at creation so it's installed right away. Anyone read it differently?
Install-TestToolkitToBcContainer for SandboxA, INCLUDETESTTOOLKIT for SandboxB. For A, it's already set up so you just add the toolkit with the cmdlet. With B, you're creating from scratch so need the include switch in your build. I'm pretty sure that's right but let me know if you see it differently.