✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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);
};