In Functional Programming, side effects are avoided by emphasizing _______ and pure functions.

  • Encapsulation
  • Immutability
  • Inheritance
  • Mutability
In Functional Programming, side effects are avoided by emphasizing immutability and pure functions. Immutability ensures that data doesn't change after creation, and pure functions produce the same output for the same input, without side effects.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *