Concept Flow - Why functions are needed
Start: Write code
Code repeats similar tasks
Problem: Code is long and hard to manage
Create function to group tasks
Call function whenever needed
Code is shorter, clearer, reusable
Easier to fix and update
End
This flow shows how functions help by grouping repeated tasks, making code shorter, clearer, and easier to manage.