Do Procedures or Functions return values?
Functions, procedures do not.
What might you need to do as your programs become larger and more complex?
Break down into smaller self contained sections.
What do subroutines do?
Allow code that you intend to use a number of times to be grouped together under one name.
Are functions or procedures subroutines?
both are subroutines.
Can values be passed to both procedures and functions?
Yes.
What will Functions do after processing has taken place?
Return a value.
Can functions and procedures have arguments?
yes, both can.
Can subroutines be used in other programs?
Yes.