The correct answer is:
✅ All the options
Explanation:
Continuous Integration (CI) is a software development practice where code changes are frequently merged into a shared repository and automatically tested. The following activities are essential parts of CI:
-
Inspection ✅ (True)
- Code reviews and automated code quality checks ensure that changes meet coding standards.
-
Tests ✅ (True)
- Automated tests (unit tests, integration tests, etc.) verify that the new code does not break existing functionality.
-
Version Control ✅ (True)
- CI relies on version control systems (e.g., Git) to track changes, merge branches, and manage different versions of code.
Since all these activities are integral to CI, the correct answer is "All the options." 🚀