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
Complete Question
Air at 40C flows over a 2 m long flat plate with a free stream velocity of 7m/s. Assume the width of the plate (into the paper) is 0.5 m. If the plate is at a co temperature of 100C,find:
The total heat transfer rate from the plate to the air
Answer:

Explanation:
From the question we are told that:
Air Temperature 
Length 
Velocity 
Width 
Constant temperature 
Generally the equation for Total heat Transfer is mathematically given by

Where
h=Convective heat transfer coefficient

Therefore




Answer:
D
Explanation:
the way vertices are connected may be different so having same number of edges do not mean that total degree will also be same.
Answer:
It will be equivalent to 338.95 N-m
Explanation:
We have to convert 250 lb-ft to N-m
We know that 1 lb = 4.45 N
So foe converting from lb to N we have to multiply with 4.45
So 250 lb = 250×4.45 =125 N
And we know that 1 feet = 0.3048 meter
Now we have to convert 250 lb-ft to N-m
So 
So 250 lb-ft = 338.95 N-m