Answer:
<em>Package software is developed by computer technicians. modified or changed if there is need because these software are custom-built. Tailored Software- Tailored software is the software that is developed as per the specifications and requirements of the users.</em>
Explanation:
hpithlps.
I would say a salesman or woman would most benefit from a custom slide show that shows a product, explains what it is, where it comes from, how it is made and especially how it can be used to benefit an organization as these things or qualities should be fairly cut and dried and well worked out unlike say a technique that depends on the circumstances like installing a piezometer (an instrument to read water pressure) in a drill hole in which case a particular slide show rather than a custom one would have to be used.
def even_checker(lst):
for x in lst:
if x%2==0:
print(x)
l = [1,2,3,4,5,6,7,8,9,10]
even_checker(l)
I wrote my code in python 3.8. I hope this helps.