EV Technology - Future Battery Technologies
Consider this simplified code snippet representing a battery capacity calculation:
What is the output of this code?
def capacity(lithium, sulfur):
return lithium * 2 + sulfur * 4
print(capacity(3, 5))What is the output of this code?
