logo

Crowdly

Browser

Add to Chrome

public void processUserData(Object[] data)  {  // Assumes index 0 is always Age...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

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?
0%
100%
0%
0%
0%
More questions like this

Want instant access to all verified answers on learning.monash.edu?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome