Answer:
Benefits that last a lifetime. The Army offers you money for education, comprehensive health care, generous vacation time, family services and support groups, special pay and cash allowances to cover the cost of living.
Answer:
<em>The direction of ball will be Number 4 (as can be seen in attached picture) ---- the path of ball will be making some angle when it leaves the tube. </em>
Explanation:
The question is incomplete. So the picture, which is missing in question, is attached for your review.
As it can be seen in the picture, the ball coming out of the tube will have two components of velocity. One is along the length of tube (because ball is moving in that direction and is coming out from the hole), other is velocity component will be perpendicular to the tube (because the ball is made to move in that direction as the tube is rolling on the surface).
<em>So, taking the resultant of two vectors of velocity, the resultant direction of ball will be Number 4 (as can be seen in attached picture) ---- the path of ball will be making some angle when it leaves the tube. </em>
Answer:
The code is given below in Python with appropriate comments
Explanation:
# convert list to set
male_names = set(['Oliver','Declan','Henry'])
# get remove and add name from user
remove_name = input("Enter remove name: ")
add_name = input("Enter add name: ")
# remove name from set
male_names.remove(remove_name)
# add new name ij set
male_names.add(add_name)
# sort the set
a = sorted(male_names)
# print the set
print(a)