What is a RECURSIVE method?
- **A)** A method that calls ITSELF, either directly or indirectly, as part of its own execution
- **B)** A synonym for a method with no parameters
- **C)** A method that always runs exactly once and then never again
- **D)** A method that can never call any other method
Recursion is defined by a method invoking itself, typically to break a problem down into smaller versions of the same problem.