You actually have the correct answer. An excel formula starts with = so your answer would be =4*6
A callback function is code that's called, or run, when a specific event such as a click of the mouse, happens.Callback is another name for a callback function. Thank you for posting your question here at brainly. I hope the answer will help you. Feel free to ask more questions.
Answer:
result = 0
for i in range(99, 0, -1):
result += i
print(result)
Explanation: