The primary operations performed on tables in ServiceNow follow the CRUD model:
Create (C) – Adding a new record to a table.
Read (R) – Viewing or retrieving a record from a table.
Write (W) – Editing or updating an existing record.
Delete (D) – Removing a record from a table.
These operations are fundamental to database management and align with ServiceNow’s Access Control Rules (ACLs), which enforce security permissions for each operation.
A. Create, Rate, Update, Delete❌ Incorrect – "Rate" is not a standard database operation.
B. Create, Read, Upload, Delete❌ Incorrect – "Upload" is not a standard database operation.
D. Capture, Rate, Write, Develop❌ Incorrect – None of these terms (except "Write") relate to database operations.
Incorrect Answer Choices Analysis:
ServiceNow Docs – CRUD Operations in Tables???? Tables and CRUD Operations
ServiceNow Docs – Access Control Rules???? ServiceNow ACLs for CRUD
Official ServiceNow Documentation References:
Submit