Please enable JavaScript.
Coggle requires JavaScript to display documents.
Programming Features - Coggle Diagram
Programming Features
Procedures & Functions
-
-
Benefits
-
-
You can test one procedure without the main program which means bugs are easier to identify and resolve
-
Parameters
-
-
Passing
reference
ALWAYS used when passing an array since the array may be quite long and take up a bit of storage. passing it by reference means that there will be a copy as well as the original array so double the amount of storage is needed
used when the value is going to change when it's passed into the subroutine. The original parameter is passed
-
-