Question 410 of 753
AI Associate Data for AI Practice Question
Exhibit
{
"dataAccessPolicy": {
"dataset": "customer_transactions",
"allowedUsers": ["data_scientist", "ml_engineer"],
"deniedUsers": ["intern"],
"fields": ["transaction_id", "amount", "date"],
"conditions": {
"amount": {"gt": 0, "lt": 10000}
}
}
}Refer to the exhibit. A data scientist tries to query the dataset but receives an error. Which of the following is the most likely cause?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The requested fields are not included in the policy.
'data_scientist' is in allowedUsers, so they are allowed. Option B is not in policy, C the policy filters amounts >0 and <10000, so 5000 is included, D the fields are in the policy, so they should be accessible.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
The requested fields are not included in the policy.
Why this is correct
If the query requests a field not listed (e.g., customer_name), it would be denied.
- ✗
The condition filters out records with amount=5000.
Why it's wrong here
5000 is between 0 and 10000, so included.
- ✗
The data scientist is not listed in the allowedUsers array.
Why it's wrong here
They are included, so this is not the cause.
- ✗
The policy format is invalid JSON.
Why it's wrong here
The JSON is valid.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 23, 2026
This AI Associate practice question is part of Courseiva's free Salesforce certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AI Associate exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.