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: B
Explanation: unless newer models added wingding to code inside fused computer...wingdings on a window ...not a motor
Answer:
(4.5125 * 10^-3 kg.m^2)ω_A^2
Explanation:
solution:
Moments of inertia:
I = mk^2
Gear A: I_A = (1)(0.030 m)^2 = 0.9*10^-3 kg.m^2
Gear B: I_B = (4)(0.075 m)^2 = 22.5*10^-3 kg.m^2
Gear C: I_C = (9)(0.100 m)^2 = 90*10^-3 kg.m^2
Let r_A be the radius of gear A, r_1 the outer radius of gear B, r_2 the inner radius of gear B, and r_C the radius of gear C.
r_A=50 mm
r_1 =100 mm
r_2 =50 mm
r_C=150 mm
At the contact point between gears A and B,
r_1*ω_b = r_A*ω_A
ω_b = r_A/r_1*ω_A
= 0.5ω_A
At the contact point between gear B and C.
At the contact point between gears A and B,
r_C*ω_C = r_2*ω_B
ω_C = r_2/r_C*ω_B
= 0.1667ω_A
kinetic energy T = 1/2*I_A*ω_A^2+1/2*I_B*ω_B^2+1/2*I_C*ω_C^2
=(4.5125 * 10^-3 kg.m^2)ω_A^2