Question at position 3 Consider the code fragment below. It has a missing piece of code indicated by XXX. Complete the print statement to output: You have 3 oranges costing $1.50 total. fruit = "orange" quantity = 3 price_per_unit = 0.5 print( XXX )f"You have $(quantity) $(fruit)s costing $round(quantity * price_per_unit, 2) total."f"You have {quantity} {fruit}s costing ${quantity * price_per_unit:.2f} total."f"You have quantity fruit costing ${quantity * price_per_unit:.2f} total."f"You have {quantity} {fruit}s costing ${quantity * price_per_unit:2} total."Clear my selectionSingle choice

A

f"You have $(quantity) $(fruit)s costing $round(quantity * price_per_unit, 2) total."

B

f"You have {quantity} {fruit}s costing ${quantity * price_per_unit:.2f} total."

C

f"You have quantity fruit costing ${quantity * price_per_unit:.2f} total."

D

f"You have {quantity} {fruit}s costing ${quantity * price_per_unit:2} total."

Log in for full answers

We've collected over 50,000 authentic original questions and detailed explanations from around the globe. Log in now and get instant access to the answers!

More Practical Tools for Students Powered by AI Study Helper

Join us and instantly unlock extensive past papers & exclusive solutions to get a head start on your studies!