Answer:
D
Explanation:A circuit is equivalent to another when the output voltage is equal to each other. This is so because a circuit may have a higher voltage source and lesser load or a lower voltage source and higher load,so we can only say they are equal If the output is similar
Answer:
This is False because people can have more than 1
Answer:
Concentration factor will be 1.2
So option (C) will be correct answer
Explanation:
We have given outer diameter D = 1.25 in
And inner diameter d = 1 in and fillet ratio r = 0.2 in
So
ratio will be 
And
ratio will be 
Now from the graph in shaft vs torsion the value of concentration factor will be 1.2
So concentration factor will be 1.2
So option (C) will be correct answer.
Answer:
Explanation:
t1 = 1000 F = 1460 R
t0 = 80 F = 540 R
T2 = 3600 R
The working substance has an available energy in reference to the 80F source of:
B1 = Q1 * (1 - T0 / T1)
B1 = 100 * (1 - 540 / 1460) = 63 BTU
The available energy of the heat from the heat wource at 3600 R is
B2 = Q1 * (1 - T0 / T2)
B2 = 100 * (1 - 540 / 3600) = 85 BTU
The reduction of available energy between the source and the 1460 R temperature is:
B3 = B2 - B1 = 85 - 63 = 22 BTU
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