“Rotation” refers to an objects spinning motion about it’s own axis.
“Revolution” refers to the objects orbital motion around another object.
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:
Explanation:
Mean temperature is given by

Tmean = (Ti + T∞)/2

Tmean = 107.5⁰C
Tmean = 107.5 + 273 = 380.5K
Properties of air at mean temperature
v = 24.2689 × 10⁻⁶m²/s
α = 35.024 × 10⁻⁶m²/s
= 221.6 × 10⁻⁷N.s/m²
= 0.0323 W/m.K
Cp = 1012 J/kg.K
Pr = v/α = 24.2689 × 10⁻⁶/35.024 × 10⁻⁶
= 0.693
Reynold's number, Re
Pv = 4m/πD²
where Re = (Pv * D)/
Substituting for Pv
Re = 4m/(πD
)
= (4 x 0.003)/( π × 6 ×10⁻³ × 221.6 × 10⁻⁷)
= 28728.3
Since Re > 2000, the flow is turbulent
For turbulent flows, Use
Dittus - Doeltr correlation with n = 0.03
Nu = 0.023Re⁰⁸Pr⁰³ = (h₁D)/k
(h₁ × 0.006)/0.0323 = 0.023(28728.3)⁰⁸(0.693)⁰³
(h₁ × 0.006)/0.0323 = 75.962
h₁ = (75.962 × 0.0323)/0.006
h₁ = 408.93 W/m².K
Answer:
correct me if i'm wrong but i think it's false
Explanation:
Answer:
The given blanks can be filled as given below
Voltmeter must be connected in parallel
Explanation:
A voltmeter is connected in parallel to measure the voltage drop across a resistor this is because in parallel connection, current is divided in each parallel branch and voltage remains same in parallel connections.
Therefore, in order to measure the same voltage across the voltmeter as that of the voltage drop across resistor, voltmeter must be connected in parallel.