2V0-621 · Question #5
An object has inherited permissions from two parent objects. What is true about the permissions on the object?
The correct answer is B. The permissions are combined from both parent objects.. When an object inherits permissions from two parent objects, all permissions from both parents are combined and applied to the child object, giving the union of all granted rights.
Question
An object has inherited permissions from two parent objects. What is true about the permissions on the object?
Options
- AThe common permissions between the two are applied and the rest are discarded.
- BThe permissions are combined from both parent objects.
- CNo permissions are applied from the parent objects.
- DThe permission is randomly selected from either of the two parent objects.
How the community answered
(39 responses)- A3% (1)
- B90% (35)
- C5% (2)
- D3% (1)
Why each option
When an object inherits permissions from two parent objects, all permissions from both parents are combined and applied to the child object, giving the union of all granted rights.
Applying only the intersection of common permissions would be overly restrictive and would silently drop access rights granted by one parent but not the other, which is not how standard permission inheritance operates.
Standard permission inheritance uses an additive model - when multiple parents grant permissions to a child object, all permissions from every parent are merged together into the effective permission set on the child. This ensures that any right explicitly granted by any parent is preserved rather than lost, making access control both predictable and consistent. The resulting effective permissions represent the broadest set of rights across all inheritance sources.
Inherited permissions are applied by design unless inheritance is explicitly blocked at the object level - ignoring all parent permissions would defeat the purpose of hierarchical access control.
Permission systems are deterministic and must produce consistent results - randomly selecting from one parent's permissions would make security enforcement unpredictable and unauditable.
Concept tested: Additive permission inheritance from multiple parent objects
Source: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.security.doc/GUID-74F53189-EF41-4AC1-A78E-D25621855800.html
Topics
Community Discussion
No community discussion yet for this question.