✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
public void processUserData(Object[] data)
{ // Assumes index 0 is always Age and index 1 is always Postcode
int age = (int) data[0];
String postcode = (String) data[1];
}
A rushed engineering team configures multiple distinct classes to expect an implicit, exact structural order of values inside a plain object array. When a new developer unknowingly swaps the element insertion order in another module, this routine instantly crashes. By taking a shortcut that relies on structural sequence dependency across components, the team introduced technical debt tied to which type of connascence?