What is boundary testing and how would you apply it?
Sigiloso
Boundary testing is a technique used to identify errors at the edges of input ranges, where bugs are more likely to occur. It focuses on testing values at, just below, and just above the valid input limits. Example of application: If a form accepts ages between 18 and 65, I would test values like 17, 18, 65, and 66 to verify how the system handles inputs right at the boundaries.