Say it like this
Real examples
"Can you implement this using recursion instead of a loop?"
"The recursion depth looks problematic here. Let us add a base case to prevent stack overflow."
"We could use recursion to traverse this nested JSON structure, but iteration might be clearer for the team."
Don't say this
Handle with care. Do not use recursion to mean simply repeating or looping. Recursion specifically means a function calling itself with modified parameters.
Other forms
recursion
"Tail recursion is an optimization technique."
recursive
"The recursive function calls itself three times."
recursively
"We can solve this recursively or iteratively."
Often used with
Similar words
Opposites
Practice
Try it
4 quick exercises
1. The function uses _______ to calculate the factorial by calling itself with a smaller value each time.
2. Which sentence uses recursion incorrectly?
3. How would you most naturally explain a recursive solution to a colleague?
4. Rewrite this using the word recursion: 'When a function calls itself with simpler data until it reaches a stopping point, that is a way to solve problems.'
Questions
Quick poll
Have you said "recursion" in a standup this week?
Want more structured practice like this? Our English for Programmers course covers real workplace English in depth.




