Symbol
Name
Function
Start/end
An oval represents a start or end point
A line is a connector that shows relationships between the representative shapes
Arrows
Input/Output
A parallelogram represents input or output
Process
A rectangle represents a process
Decision
A diamond indicates a decision
Find Quiz#2, the flow chart and partial codes are given, you need to understand them and fill in the blanks to complete the codes. Please submit runnable code (.m files for each problem on eLearning.
1. Defining a function for length unit conversions. This function is for length unit conversions - Mile, Yard, Foot to Meter. 1 Mile = 1609.34 Meter, 1 Yard = 0.9144 Meter, 1 Foot = 0.3048 Meter. Define function function length_conversion(). Then call your function. Note: this user-defined function does not have input and output!!! Submit length_conversion.m when you finish it.