Cells have been encapsulated in a polymeric hydrogel compose…

Cells have been encapsulated in a polymeric hydrogel composed of polyamides and polyesters. When immersed in aqueous cell culture media, the material swells over time. 1) Identify the routes of degradation, 2) explain why the hydrogel has swollen, and 3) why the hydrogel will not completely degrade in a week. Be sure to answer all 3 parts of the question for full credit.    

Fill in the textboxes with the text that should go in the sp…

Fill in the textboxes with the text that should go in the spot on the same line with a _____ in the below code so that each variable is declared as the type it stores and each call to print_variable passes in an int*. Fill in the printf in print_variable so that the number stored in the parameter is printed. If a variable declaration will not work or a call is made using a variable that will not work write the word broken in the box. If no * or & are needed in a call write ok in the box. void print_variable(int* var) { printf(“%d\n”, ______); [a1] } int main() { int a = 17; ______ b = a; [a2] ______ c = *a; [a3] ______ d = &a; [a4] ______ e = &&b; [a5] ______ f = &d; [a6] ______ g = *f; [a7] print_variable( ____a ); [a8] print_variable( ____b ); [a9] print_variable( ____c ); [a10] print_variable( ____d ); [a11] print_variable( ____e ); [a12] print_variable( ____f ); [a13] print_variable( ____g ); [a14] }