A city launches a new online form that silently truncates long street names to fit a short database field. What does this scenario primarily illustrate?
Select an answer to reveal the explanation.
Short Explanation
If the form chops off 'Boulevard' without telling anyone, the database quietly invents wrong addresses. System design—not just careless typing—can bake defects in. Silent truncation is a classic system-induced quality failure.
Full Explanation
Application constraints such as silent truncation create systematic correctness and usability defects at capture. Because users receive no warning, bad values propagate downstream as if they were complete. Linking DQ outcomes to system design supports prevention through adequate field lengths, validation, and visible errors.