Answer:

Explanation:
Photoshop format (PSD) is the default file format and the only format, besides the Large Document Format (PSB), that supports all Photoshop features.
Answer would be D)potential
#let the user input data
Hours = int(input(“enter how many hours were worked”))
Pay_rate = float(input(“Enter the pay rate”))
Pay_amount = Pay_rate * Hours
#calculate the wages
Print (Pay_amount)
#print the final answer