¢@iWhat is the model of a function that specifies the function name, list of variables, and the return type? prototypingargument main functionnone of the aboveDay 5 "Functions: The Basics" prototypingWhat is the code that comprises the body of a function called?function argumentsfunction headerfunction definition return valueDay 5 "Functions: The Basics"function definition:What does structured programming break complex tasks into?multiple seperate programsmany complex tasksone large tasksmaller, simpler tasksDay 5 "Functions: The Basics"smaller, simpler tasks&How is a structured program organized?randomlyhierarchicallylinearly chaoticallyDay 5 "Functions: The Basics"hierarchicallyOWhere is the majority of code in a program written using a "top-down" approach?main()one source file header files functionsDay 5 "Functions: The Basics" functions A function's return type can be?intfloatcharany C data typeDay 5 "Functions: The Basics"any C data typeNIf x=5, what is the value of the argument passed in the function call cube(x)?5xy125Day 5 "Functions: The Basics"5What are local variables?'variables defined outside of a function#variables defined inside a function'variables defined in a library functionnone of the aboveDay 5 "Functions: The Basics"#variables defined inside a functionMWhat are the function parameters in this function: int func(int x1, int x2)?x1x2 x1 and x2x1, x2, and x3Day 5 "Functions: The Basics" x1 and x2XWhat are the function arguments in the call to this function: int func(int x1, int x2)?x1x2 x1 and x2unknownDay 5 "Functions: The Basics"unknownDWhat is the return type of this function: int func(int x1, int x2)?intcharfloatunknownDay 5 "Functions: The Basics"intEWhat is the return value of this function: int func(int x1, int x2)?int0-1unknownDay 5 "Functions: The Basics"unknownJWhat is a function that is written in a way that allows it to call itself? redundantreliable recursive replicantDay 5 "Functions: The Basics" recursive@What is a variable that is visible from anywhere in the program?globalstaticlocal permanentDay 5 "Functions: The Basics"global'What is a legal function argument type?intfloatcharany C data typeDay 5 "Functions: The Basics"any C data type:What is the function what begins execution of a C program?startbeginmainrunDay 5 "Functions: The Basics"main.What is a variable that is declared as extern?globalstaticlocal permanentDay 5 "Functions: The Basics"global#Where are local variables declared?within main onlyoutside a functionwithin a functionnone of the aboveDay 5 "Functions: The Basics"within a function