Question 10
Consider the following Python code:
names = ["Aarav", "Bhuvan", "Charan", "Deepa"]
marks = [88, 76, 92, 81]
bonus = [5, 3, 4, 2]
total = 0
for name, mark, extra in zip(names, marks, bonus):
if "a" in name.lower():
total += mark + extra
else:
total += mark
print(total)
What will be the output of the above code?