Answer:
exit temperature 285 K
Explanation:
given data
temperature T1 = 270 K
velocity = 180 m/s
exit velocity = 48.4 m/s
solution
we know here diffuser is insulated so here heat energy is negleted
so we write here energy balance equation that is
0 = m (h1-h2) + m ×
.....................1
so it will be
.....................2
put here value by using ideal gas table
and here for temperature 270K
h1 = 270.11 kJ/kg
solve it we get
h2 = 285.14 kJ/kg
so by the ideal gas table we get
T2 = 285 K
Answer:
correct option is c. a testable prediction leading to design of an experiment
Explanation:
The results of raising tadpoles were estimated to be water with an atrazine level of 0.1 ppb compared to those grown in pure water. So, this is not the question. If this assumption can now be tested, an experiment can be made in which a certain number of tadpoles can be raised in pure water and the same number of tadpoles can be raised in water with a 0.1ppb atrazine level can. The difference between the two populations can be estimated or compared.
I don’t know how to speak the laungue or know this language
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