

InterviewSolution
Saved Bookmarks
1. |
What are the characteristics of pure functionIn class 12 Computer Science |
Answer» A pure function has two main characteristics:A pure function is deterministic. This means, that given the same input, the function will ALWAYS return the same output. ...A pure function will not cause side effects. A side effect is any change in the SYSTEM that is OBSERVABLE to the outside world. |
|