01. After a large release, an org that had sat comfortably above the requirement now reports 71% org-wide Apex coverage. No test classes were deleted.
Which is the most likely cause?
a) A quality gate was deactivated during the release, which lowered the coverage the org reports.
b) Copado recalculated coverage against the promotion branch, which never includes the destination org's Apex.
c) Several test methods now fail, and Salesforce records a failing method's class as fully uncovered.
d) The release added a large volume of Apex whose tests were never written.
02. Why is it useful that a conflict resolution is recorded as a commit in the Git repository?
a) The resolution can be replayed automatically on the next conflicting promotion attempt
b) Reviewers can later see exactly which version was kept, by whom, and when
c) Copado uses the commit to skip conflict detection on that file afterwards
d) The commit records the merge, and removes the need to re-run Apex tests
03. At which point in a Copado pipeline is a metadata conflict surfaced?
a) During the promotion, when the feature branch is merged toward the destination branch.
b) During the deployment step, when the destination org rejects the incoming components.
c) During static code analysis, when the scanner compares both branch versions.
d) After the deployment finishes, when Copado compares the org against the branch.
04. A deployment reaches a Manual Task that was added as a pre-deployment step.
Who completes the task, and what happens to the deployment afterwards?
a) The task is skipped after a waiting period, and the deployment continues with the remaining steps.
b) Copado runs the instruction on the destination org, then records the task as completed automatically.
c) The release manager cancels the deployment, completes the instruction, and starts a fresh deployment afterwards.
d) The assigned user performs the instruction and marks it complete, and the deployment resumes from that step.
05. One feature branch deletes an Apex class that a second feature branch edits. Both branches are promoted toward the same destination.
What is true of this situation?
(Choose two.)
a) Copado applies the deletion automatically, since a deletion always outranks an edit.
b) Git reports a conflict because one side removed the file the other side changed.
c) Smart Auto-Resolve merges the two versions, because Apex classes are a supported type.
d) A person must decide whether the class stays or goes, and Copado pauses until then.
06. Two Automation Rules respond to the same commit event, and each one sets the user story's status to a different value.
What is the risk the team should plan for?
a) Copado refuses to save the second rule because its action conflicts with the first.
b) The status the story ends up with depends on which rule acts last.
c) Both rules fail, and the story keeps the status it had before the commit.
d) The story's status is set to whichever value the pipeline's owner configured.
07. Copado can run Apex tests against an org on a recurring schedule rather than only when a promotion happens.
Which problem does scheduling those runs primarily address?
a) It removes the 75% org-wide coverage requirement for any deployment that follows a scheduled run.
b) It merges divergent branches on a fixed cadence, so conflicts are resolved before anyone promotes.
c) It replaces the promotion-time run, so a deployment no longer needs to execute Apex tests.
d) Breakage introduced by work outside the current story is detected automatically, between promotions.
08. What does Copado's Auto-Resolve do to a conflict, and what does that cost the team?
a) It reports each conflicting component, so the promotion waits for a person to decide the outcome.
b) It opens a side-by-side editor, so a developer chooses each line that survives the merge.
c) One side's change may be lost unreviewed, because it settles the conflict by a defined strategy.
d) It rolls the promotion back, so both branches keep their own version of the file.
09. An administrator wants a coverage gate to run only when work moves into the two test environments of a source format pipeline, and nowhere else.
Which two scoping choices on the Quality Gate Rule support that?
(Choose two.)
a) Set the rule's condition to check the destination environment name at runtime.
b) Restrict the rule to the environments that receive those two promotions.
c) Add a Manual Task on each remaining environment so the gate is skipped.
d) Bind the rule to the pipeline stage those two promotions pass through.
10. The first Static Code Analysis run on a large existing code base returns several thousand findings, almost all of them low severity. Developers say the report is unusable and are asking for the step to be switched off.
What is the most effective way to make the result actionable?
a) Set the failure threshold at the highest severities first, then tighten it as findings clear.
b) Disable the analysis until the team has manually cleaned the whole code base.
c) Ask each developer to work through the low-severity findings in their own files.
d) Raise every low-severity rule to high severity, so that nothing is left unfixed.