Answer:
Technology
Explanation:
Technology is defined as the application of scientific knowledge for practical purposes, especially in industry . Sometimes applying scientific knowledge means using less of what we traditionally think of as technology.
hi here is your answer hope it helps or then sry
Explanation:
A brass lid on a glass canning jar will loosen when heated because brasshas the greater coefficient of thermal expansion
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
Answer: 131.75minutes
Explanation:
First if all, we've to find the density of liquid which will be:
= Specific gravity × Density to pure water
= 0.91 × 8.34lb/gallon
= 7.59lb/gallon
Then, the volume that's required to fill the tank will be:
= Load limit/Density of fluid
= 40000/7.59
= 5270.1gallon
Now, the time taken will be:
= V/F
= 5270.1/40
= 131.75min
It'll take 131.75 minutes to fill the tank in the truck.
Answer:
THANKS FOR THE POINTS!!!!!!!