✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
public void handleUserRequest(Request req) {
parsePayload(req);
updateDatabase(req);
sendNetworkAlert(req);
renderUserInterface(req);
}
Under intense managerial pressure to deliver a feature, a developer crams UI parsing, database adjustments, networking requests, and error notifications into a single, massive routine block. The feature ships on time, but the resulting debt makes the method handle far too many disparate architectural responsibilities. Which structural code smell was directly accumulated in this routine due to the hurried implementation?