1 why do programmers use functions? choose more than one answer.\nto save time while coding\nto write longer…

1 why do programmers use functions? choose more than one answer.\nto save time while coding\nto write longer code\nto save space in their code\nto make code easier to change
Answer
Answer:
A. To save time while coding, C. To save space in their code, D. To make code easier to change
Brief Explanations:
- "To save time while coding": Functions allow reusing code, so programmers don't have to rewrite the same logic, saving coding time.
- "To write longer code" is incorrect as functions help modularize code, not make it longer.
- "To save space in their code": By reusing function code instead of repeating logic, code space is saved.
- "To make code easier to change": If a change is needed, modifying the function (instead of multiple repeated code sections) simplifies the process.