Answer: OC / THE 3 ANSWER
Explanation:
Answer:
LTI system is stable if Impulse response is finite.
so the correct answer is "b"
(b) h2(t) = e-r cos(2t)u(t)
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:
The resulting pressure is 300 kilopascals.
Explanation:
Let consider that gas within the closed vessel behaves ideally. By the equation of state for ideal gases, we construct the following relationship for the isothermal relationship:
(1)
Where:
,
- Initial and final pressure, measured in kilopascals.
,
- Initial and final volume, measured in litres.
If we know that
and
, then the resulting pressure is:


The resulting pressure is 300 kilopascals.
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