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.    

Describe the 5 milestone along the path of biomaterial devel…

Describe the 5 milestone along the path of biomaterial development as it goes from research to commercialization. Be sure to touch on each of the 5 milestones (2pts each). You should write at least 1 sentence to describe each milestone and must include all 5 steps 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”, ______); } int main() { int a = 17; ______ b = a; ______ c = *a; ______ d = &a; ______ e = &&b; ______ f = &d; ______ g = *f; print_variable( ____a ); print_variable( ____b ); print_variable( ____c ); print_variable( ____d ); print_variable( ____e ); print_variable( ____f ); print_variable( ____g ); }