MCQ Detail
Search MCQs, Papers, Topics
What Is "Trunk-Based Development" In Version Control?
Trunk-based development is a source control practice where developers integrate small, frequent commits into a single main branch (trunk). It promotes CI, reduces merge conflicts, and is a prerequisite for effective continuous integration.
🚀 Found an error or have a suggestion?
Your feedback helps us keep our MCQs accurate and up-to-date.
Related MCQs
Related MCQs where subject and topic are same as this mcq
Question 1: What does CI stand for in DevOps?
CI stands for Continuous Integration, a practice where code changes are integrated frequently and tested automatically.
Question 2: Which of the following best describes Git?
Git is a distributed version control system used to track code changes.
Question 3: Which Git command is used to send local commits to a remote repository?
git push uploads local committed changes to a remote repository.
Question 4: In Docker, what is an image?
A Docker image is a read-only template used to create containers.
Question 5: Which statement about containers is correct?
Containers are lightweight and share the host OS kernel, making them more efficient than full virtual machines in many cases.