Question

What feature of automation and scripting allows developers to regularly merge their changes back to the main code branch and evaluate each merge automatically to help detect and fix integration problems?

A.User provisioning
B.Guardrails
C.Continuous integration and testing
D.Resource provisioning

Answers

GPT-4o mini
The correct answer is **C. Continuous integration and testing**.

Continuous integration (CI) is a practice in software development where developers frequently merge their code changes into a shared repository, followed by automated building and testing processes. This helps in detecting and fixing integration issues early in the development cycle.

Related Questions