Answer:
Engineering aims to allow technical parts, structures and/or systems, such as those of a machine, to fulfill their function. To this end, occurring and/or desired processes (the operation thereof) are investigated and elaborated. Appropriate parts are designed individually or in a team, occurring stresses are calculated and the parts to be produced are modeled and/or specified on technical drawings. In some fields, maintenance is a standard part of the work to be performed. For a large part of engineering, standards and agreements have been drawn up with a view to the desired safety and practical applicability.
Answer:
1. They have less malfunctions
2. They can be operated from afar
3. Some are self-operated.
Explanation:
Answer:
0.05 mg / gallon
Explanation:
mass of chemecila coming in per minute = 50*10 = 500 mg/min
at a time t min , M = mass of chemical = 500*t mg
conecntartion of chemecal = 500t/10000 = 0.05 mg / gallon
Answer:
Explanation:
Tu pon lo que ocupes y espera
Answer:
# Program is written in python
# 22.1 Using the count method, find the number of occurrences of the character 's' in the string 'mississippi'.
# initializing string
Stringtocheck = "mississippi"
# using count() to get count of s
counter = Stringtocheck.count('s')
# printing result
print ("Count of s is : " + str(counter))
# 2.2 In the string 'mississippi', replace all occurrences of the substring 'iss' with 'ox
# Here, we'll make use of replace() method
# Prints the string by replacing iss by ox
print(Stringtocheck.replace("iss", "ox"))
#2.3 Find the index of the first occurrence of 'p' in 'mississippi'
# declare substring
substring = 'p'
# Find index
index = Stringtocheck.find(substring)
# Print index
print(index)
# End of program