Answer:
Explanation:
Total weight being moved = 5000+1000+200
= 6200 lb .
Force applied = 700 lb
= 700 x 32 = 22400 poundal .
acceleration (a) = 22400 / 6200
= 3.613 ft /s²
To know velocity after 6 ft we apply the formula
v² = u² + 2as
v² = 0 + 2 x 3.613 x 6
43.356
v = 6.58 ft/s
Answer:
Following are the responses to the given question:
Explanation:
Answer:
The average velocity is 0.203 m/s
Explanation:
Given;
initial displacement, x₁ = 20 yards = 18.288 m
final displacement, x₂ = ¹/₃ x 18.288 = 6.096 m
change in time between 5:02 PM and 5:03 PM, Δt = 3 mins - 2 mins = 1 min = 60 s
The average velocity is given by;
V = change in displacement / change in time
V = (x₂ - x₁) / Δt
V = (18.288 - 6.096) / 60
V = 0.203 m/s
Therefore, the average velocity is 0.203 m/s
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:
def output_ints_less_than_or_equal_to_threshold(user_values, upper_threshold):
for value in user_values:
if value < upper_threshold:
print(value)
def get_user_values():
n = int(input())
lst = []
for i in range(n):
lst.append(int(input()))
return lst
if __name__ == '__main__':
userValues = get_user_values()
upperThreshold = int(input())
output_ints_less_than_or_equal_to_threshold(userValues, upperThreshold)