The _______ backup strategy involves backing up only data that has changed since the last backup.

  • Differential
  • Full
  • Incremental
  • Snapshot
The correct term is "Incremental." Incremental backup involves backing up only the data that has changed since the last backup, reducing the time and storage space required.

One of the methods to prevent deadlocks is _______ where transactions are rolled back and restarted in a different order.

  • Backtracking
  • Restart
  • Rollback
  • Timeout
One of the methods to prevent deadlocks is restarting transactions, where transactions involved in a potential deadlock are rolled back and restarted in a different order. This helps break the cycle of dependencies that lead to deadlocks.

Continuous _______ (CI) is a practice supported by collaboration tools, where code changes are automatically tested and integrated into the main codebase.

  • Improvement
  • Inspection
  • Integration
  • Iteration
Continuous Integration (CI) is a practice where code changes are automatically tested and integrated into the main codebase. It supports collaboration tools to ensure a smooth and continuous development process.

The practice of writing only enough code to pass the existing tests is known as _______.

  • Agile Coding
  • Incremental Development
  • Minimal Viable Product (MVP)
  • Red-Green-Refactor
The practice of writing only enough code to pass the existing tests in TDD is known as Red-Green-Refactor. It involves writing a failing test (Red), making the test pass by writing the minimum code (Green), and then refactoring the code without changing its behavior.

How can you include CSS in your HTML document?

  • External, Internal, Embed
  • External, Internal, Inline
  • Import, External, Inline
  • Import, Internal, Inline
CSS can be included in an HTML document using External, Internal, and Inline methods. External uses a separate CSS file, Internal uses the