✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the following function that declares an array of data items and it invokes certain functions. All the functions it invokes need to share the defined data. What is the type of cohesion exhibited by this function?
handle-Student- Data() {
Static Struct sdata[10000];
sort-student-data(sdata);
store-Student-data(sdata);
print-all-students(sdata);
};