If an IAM policy has multiple conditions, or if a condition has multiple keys, its boolean outcome will be calculated using a logical ______ operation.
NAND
OR
AND
None of these
Explanations:
The logical NAND operation is not used in IAM policy evaluation. IAM uses AND, OR, and other logical operations, but not NAND.
The logical OR operation is not used when multiple conditions or keys are involved in IAM policy evaluation. IAM generally applies AND operations to combine conditions.
The logical AND operation is used to calculate the boolean outcome when multiple conditions or keys are involved in an IAM policy. All conditions must be true for the policy to allow or deny access.
“None of these” is incorrect because the correct operation is AND, as described in option C.