What is atomic action in computer networks and internet protocol?
Answers
atomic action in computer networks and internet protocol
Explanation:
In computer programming, atomic describes a unitary action or object that is essentially indivisible, unchangeable, whole, and irreducible. Here are some usages:
In Structured Query Language , an atomic function is one that will either complete or return to its original state if a power interruption or an abnormal end occurs.
In some Unix -base operating systems, an atomic operation is one in which no change can take place in the time between the setting of a mask and the receiving of a signal to change the mask.
In some programming languages, including Lisp , an atom is the basic unit of executable code or data.
Atomic actions (atomic transactions) are a well-known technique for guaranteeing application consistency in the presence of failures. An atomic action guarantees that, despite failures, either all of the work conducted within its scope will be performed or it will all be undone. This is an extremely useful fault-tolerance technique, especially when multiple, possibly remote, transactional resources are involved.
#Learn more:
https://brainly.in/question/9394182