The advantages that can be associated to
drawings and symbols over written descriptions in engineering design and prototyping process are;
Communicate design ideas as well as technical information to engineers.
Symbols and drawings can be universal which means it is easy to interpret any where by professionals.
- An engineering drawing serves as complex dimensional object and symbol use by engineer to communicate.
- Drawings and symbols makes it easier to communicate design ideas and technical information to engineers and and how the process will go.
Therefore, drawings and symbols is universal to all engineer unlike written one.
Learn more at:
brainly.com/question/20925313?referrer=searchResults
Answer:
True
Explanation:
By definition of steady flow we have

where f(x,y,z,t) is any property of the system under consideration
=> f(x,y,z,t) = constant
Answer:
# Program is written in Python Programming Language
# Comments are used for explanatory purpose
# Program starts here
# Accept input
Steps = input (Number of Steps: ")
# Calculate distance
distance = float(2000) * float(steps)
#Print Formatted Result
print('%0.2f' % distance)
# End of Program
.--------
The above program converts number of steps to miles.
At line 5, the number of steps is inputted and stored in variable named Steps.
At line 6, the number of miles is calculated by multiplying 2000 by the content of variable Steps
The result is printed at line 8