Answer:
Tc = 424.85 K
Explanation:
Given that,





HEAT FLOW Q is

= 47123.88 w per unit length of rod
volumetric heat rate





= 424.85 K
Explanation:
first changing kilo ohm to ohm
860000 = 860 kΩ
and change 34 micro ampare to ampare
34 μA=3.4×10^-5
recalling the equation V=I*R
V= 3.4×10^-5×860000
v=29.24
The first true automobile was invented in 1885/1886 by Karl Benz
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