Bird
0
0

Which syntax correctly represents a policy rule to restrict AI agent access to sensitive data?

easy📝 Syntax Q12 of 15
Agentic AI - Real-World Agent Applications
Which syntax correctly represents a policy rule to restrict AI agent access to sensitive data?
A<code>allow(agent, access, sensitive_data)</code>
B<code>block(agent, access, public_data)</code>
C<code>permit(agent, access, all_data)</code>
D<code>deny(agent, access, sensitive_data)</code>
Step-by-Step Solution
Solution:
  1. Step 1: Understand policy rule keywords

    To restrict access, the rule should deny permission to sensitive data.
  2. Step 2: Match syntax to restriction

    deny(agent, access, sensitive_data) correctly denies access.
  3. Final Answer:

    <code>deny(agent, access, sensitive_data)</code> -> Option D
  4. Quick Check:

    Restriction means deny access = D [OK]
Quick Trick: Deny means block access; allow means permit access [OK]
Common Mistakes:
  • Confusing allow with deny
  • Using permit for sensitive data access
  • Blocking public data instead of sensitive

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Agentic AI Quizzes