220k views
5 votes
Local data variables by its own procedures

One execution at a time
Process can only enter if procedure invokes it
A) Procedure Isolation
B) Data Encapsulation
C) Single Execution
D) Process Synchronization

1 Answer

3 votes

Final answer:

The correct answer is b)Data Encapsulation. Local data variables are encapsulated within a procedure and can only be accessed by that procedure.

Step-by-step explanation:

The correct answer is B) Data Encapsulation. Data Encapsulation refers to the process of combining data and the methods that operate on that data into a single entity, known as an object. In the context of a procedure, local data variables are encapsulated within the procedure and can only be accessed by that procedure. This ensures that each execution of the procedure operates on its own set of data variables and does not interfere with other processes or procedures.

User GOK
by
8.3k points