InterviewSolution
| 1. |
Second: |
Answer»
Example: tracking the position of some moving object, as the time passes if something is in motion then its position is changing. so, we can say the position has a different state and a logic performing some manipulation on position is called stateful logic.
Generally stateless logic does not involve a RECORD of previous interactions and each and every interaction request has to be handled based on information that is new (that comes with the request). |
|