DRAG DROP You need to ensure disaster recovery requirements are met. What code should you add at line PC16? To answer, drag the appropriate code fragments to the correct locations. Each code fragment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.
I don’t think Directory TransferContext fits here since the requirement is for a single blob copy, not a folder. SingleTransferContext → ShouldOverwriteCallbackAsync → true matches how you guarantee DR overwrites every time, which is needed for recovery. Directory/ShouldTransferCallbackAsync/false is probably a trap if you just skim it. Anyone see a reason to choose otherwise?
SingleTransferContext → ShouldOverwriteCallbackAsync → true is the correct sequence. DirectoryTransferContext is just for directory jobs, so that's a common trap. Always overwriting and using server-side copy lines up with standard DR best practices. Pretty sure this is right but yell if you spot a different scenario!
SingleTransferContext → ShouldOverwriteCallbackAsync → true is the right mapping. Saw a similar scenario in the official docs and labs: SingleTransferContext for blob-level control, ShouldOverwriteCallbackAsync to make sure overwrite happens, true for server-side DR efficiency. If you're prepping, check out code samples and try blob copy lab demos for this logic. Pretty sure this matches the exam pattern.
Directory TransferContext is tempting but only applies for folder-level moves. For a single blob, SingleTransferContext is the right context, and overwriting is crucial in DR, so ShouldOverwriteCallbackAsync with true makes sense here. Pretty sure that’s what MS expects, but let me know if I missed something.
SingleTransferContext → ShouldOverwriteCallbackAsync → true matches what I've seen in practice tests and lines up with DR best practices for overwriting the destination. Pretty sure that's right, but happy to hear other takes if anyone thinks differently. Official docs and exam guide back this up.
SingleTransferContext → ShouldOverwriteCallbackAsync → true matches what I had on a mock. SingleTransferContext is for blob ops (not directories), and overwriting with server-side copy is standard for DR. Pretty confident but open if someone had different exam wording.
