Correct Answer: C
In ServiceNow, groups are stored in the Group [sys_user_group] table. Groups are used to organize users with similar responsibilities, permissions, or functional roles.
Key Fields in the sys_user_group Table:
Name (name) - The unique name of the group.
Manager (manager) - The user responsible for managing the group.
Roles (roles) - The roles assigned to the group, which are inherited by all group members.
Parent Group (parent) - If applicable, this establishes group hierarchy.
Common Use Cases for Groups:
Assigning access roles to multiple users at once.
Routing tasks or approvals (e.g., Incident assignments to an IT Support group).
Managing security and permissions in ServiceNow.
Explanation of Incorrect Options:
A . Group [user group] - Incorrect. This is not a valid ServiceNow table.
B . Group [sys_user] - Incorrect. This is the User table, not the Group table.
D . Group [sys_user_group_profile] - Incorrect. This table does not exist in ServiceNow.
Reference from Certified System Administrator (CSA) Documentation:
ServiceNow Docs: User Administration - sys_user_group Table
ServiceNow CSA Study Guide - Managing Users and Groups