What the ServiceNow Certified System Administrator (CSA) exam covers
- User Interface and Navigation115 questions
- Collaboration92 questions
- Database Administration123 questions
- Self-Service and Automation139 questions
- Data and Reporting100 questions
- Administration and Security108 questions
- Data Management and Migration92 questions
Free ServiceNow Certified System Administrator (CSA) sample questions
A sample of 10 questions with answers and explanations. Sign up free to practice all 769.
-
Which table stores individual user records in ServiceNow, such as name, email, and login information?
- Asys_userCorrect
- Bsys_user_group
- Csys_user_has_role
- Dsys_user_grmember
✓ Correct answer: AThe User [sys_user] table holds each person's core identity data, including name, email, and login credentials. sys_user_group stores group records, sys_user_has_role stores role assignments, and sys_user_grmember stores group membership, each a separate table from the user record itself.
Why the other options are wrong- Bsys_user_group stores group records, not individual users.
- Csys_user_has_role stores role assignments, not the user's identity data.
- Dsys_user_grmember stores group membership rows, not the user record itself.
-
Which of the following is true regarding using Impersonate to view the instance as another user?
- AImpersonate requires the target user's explicit real-time approval each time
- BAn administrator generally cannot impersonate another user who holds the admin roleCorrect
- CImpersonate permanently transfers the target user's password to the administrator
- DImpersonate can only be used on inactive user accounts
✓ Correct answer: BAs a security safeguard, an administrator generally cannot impersonate another user who also holds the admin role. Impersonate never exposes the target's password, it is typically used on active accounts, and it does not require the target user's real-time approval.
Why the other options are wrong- AImpersonate does not require the target user to approve the session in real time.
- CImpersonate does not expose or transfer the target user's password at all.
- DImpersonate is typically used on active accounts to preview their real, current access, not restricted to inactive ones.
-
When every Requested Item under a Request reaches a closed state, what typically happens to the parent Request?
- AThe Request itself moves to a closed state as wellCorrect
- BThe Request is deleted from the sc_request table
- CThe Request remains permanently in a pending approval state
- DThe Request automatically reopens all of its Requested Items
✓ Correct answer: AOnce every Requested Item under a Request finishes, the Request record itself moves to a closed state, reflecting that the entire order has been fulfilled.
Why the other options are wrong- BThe Request record isn't deleted; it is retained as a historical record of the order.
- CStaying permanently pending would contradict the closure of every child Requested Item.
- DReopening the items automatically after closure isn't standard behavior.
-
What is the purpose of the scheduled job that processes the sysevent table?
- ATo pick up queued events and trigger any matching notifications or subscribed scriptsCorrect
- BTo publish every currently checked-out classic workflow version
- CTo recalculate business hours for every active SLA schedule
- DTo reset every Task SLA record on the instance overnight
✓ Correct answer: AA background scheduled job continuously reads unprocessed rows from sysevent and triggers whatever is listening for that event name, such as an Event is fired notification or a script subscribing to that event.
Why the other options are wrong- BPublishing workflow versions is a manual administrator action, not this job's role.
- CSchedule calculations are handled by the schedule engine, not the event processor.
- DThere is no nightly reset of every Task SLA record tied to this job.
-
An incident sits in "Resolved" for several days without the caller confirming. What commonly happens next in a standard configuration?
- AA scheduled job may auto-close it after a set period without a responseCorrect
- BThe record is permanently deleted
- CThe record reverts to New and loses its history
- DThe assignment group is automatically changed to Service Desk
✓ Correct answer: AMany instances run a scheduled job that automatically moves an incident from Resolved to Closed after a configured number of days if the caller has not reopened or responded, avoiding tickets sitting indefinitely in a resolved-but-unconfirmed state.
Why the other options are wrong- BAuto-close does not equate to permanent deletion of the record.
- CAuto-close moves the record forward to Closed, not backward to New, and history is preserved.
- DThere is no standard behavior that reassigns the group upon auto-close.
-
Why is data certification often set to recur rather than run once?
- AData drifts out of date and needs re-validationCorrect
- BIt renews the platform license
- CScheduled jobs cannot run more than once
- DIt replaces the need for update sets
✓ Correct answer: ACIs and other business data change as environments evolve, so periodic re-certification catches drift that a one-time review would miss.
Why the other options are wrong- BCertification has no bearing on platform licensing.
- CScheduled jobs can absolutely recur; that is the entire point of scheduling them.
- DCertification is a data-accuracy process, unrelated to moving configuration via update sets.
-
Which TWO tables are commonly implemented as extensions of the Task [task] table in an out-of-box ServiceNow instance? (Choose TWO)
- AChoice [sys_choice]
- BRequested Item [sc_req_item]Correct
- CUser [sys_user]
- DConfiguration Item [cmdb_ci]
- EProblem [problem]Correct
✓ Correct answer: B, EAlong with Incident and Change Request, Problem and sc_req_item are standard out-of-box extensions of Task, inheriting its common process fields.
Why the other options are wrong- Asys_choice stores choice list values and is unrelated to Task extension.
- Csys_user is the base people table and does not extend Task.
- Dcmdb_ci is the base CMDB table for assets and CIs, independent of the Task hierarchy.
-
By default, can a scoped application directly access tables and fields owned by another, unrelated scoped application?
- ANo, scoped applications cannot access any data at all, including their own tables
- BYes, all scoped applications can freely read and write each other's data with no restriction
- CNo, cross-scope access is restricted unless explicitly allowedCorrect
- DYes, but only for Reference fields
✓ Correct answer: CScoping enforces access boundaries so one scoped application cannot freely reach into another unrelated application's tables unless explicit access is granted.
Why the other options are wrong- AA scoped application can certainly access its own tables; the restriction is about accessing other scopes, not itself.
- BUnrestricted free access between unrelated scopes is exactly what scoping is designed to prevent by default.
- DThe restriction is not limited to just Reference fields; it applies broadly.
-
A report owner wants specific individual users, but not their whole department, to be able to view a sensitive report. What sharing option fits this need?
- AShare the report with those specific users onlyCorrect
- BShare the report with Everyone
- CSchedule the report to email the entire company
- DPublish a public read-only link on the company intranet
✓ Correct answer: ASharing with Everyone, mass emailing the whole company, or posting a public link would all expose the report far more broadly than the stated need for limited, individual access.
Why the other options are wrong- BSharing with Everyone would expose the report to the entire instance, which is broader than the stated need.
- CScheduling a company-wide email would distribute the report much more broadly than sharing with a few named users.
- DA public read-only link posted broadly would not restrict visibility to only the intended individuals.
-
Which TWO are true about Personalize Columns? (Choose TWO)
- AA user can add or remove columns from their own viewCorrect
- BIt changes the underlying dictionary instance-wide
- CA user can reorder the sequence of columnsCorrect
- DIt requires the security_admin role
- EIt permanently deletes unselected fields from the table
✓ Correct answer: A, CThis tool changes only the requesting user's personal list layout, letting them choose and order which columns appear, with no effect on the table's dictionary.
Why the other options are wrong- BIt changes only the user's personal layout, not the dictionary.
- DAny user can personalize their own column view.
- EUnselected fields remain on the table, only hidden from view.
Who this ServiceNow Certified System Administrator (CSA) practice exam is for
This practice set is for anyone preparing for the ServiceNow Certified System Administrator (CSA) exam at the intermediate level - from first-time candidates building a foundation to experienced ServiceNow practitioners doing a final review before test day. If you learn best by working through realistic questions and reading why each answer is right or wrong, it is built for you.
How to use this ServiceNow Certified System Administrator (CSA) practice exam
- Start with the free sample questions above to gauge your current baseline.
- Read the full explanation on every question, including why each wrong option is wrong.
- Track your weak domains and focus your study where you are losing the most marks.
- Once you are scoring consistently well, take a timed, full-length mock exam.
- Use your readiness score to decide when you are ready to book the real ServiceNow Certified System Administrator (CSA) exam.
Related ServiceNow resources
- ServiceNow Certified System Administrator (CSA) study guideKey concepts
- ServiceNow practice examsAll ServiceNow
- Certification pathWhere this fits
- Certification exam guides & tipsBlog
- Plans & pricingFree & paid
ServiceNow Certified System Administrator (CSA) practice exam FAQ
How many questions are in the ServiceNow Certified System Administrator (CSA) practice exam on CertGrid?
CertGrid has 769 practice questions for ServiceNow Certified System Administrator (CSA), covering 7 exam domains. The real ServiceNow Certified System Administrator (CSA) exam is 60 qs in 90 min. CertGrid's timed mock is a fixed 60 questions.
What is the passing score for ServiceNow Certified System Administrator (CSA)?
The ServiceNow Certified System Administrator (CSA) exam passing score is 70%, and you have about 90 min to complete it. CertGrid scores your practice attempts the same way so you know when you are ready.
Are these official ServiceNow Certified System Administrator (CSA) exam questions?
No. CertGrid is an independent practice platform. We do not provide real or leaked exam questions. Our questions are original and designed to help you practice the concepts, scenarios, and difficulty style of the ServiceNow Certified System Administrator (CSA) exam.
Can I practice ServiceNow Certified System Administrator (CSA) for free?
Yes. You can start practicing ServiceNow Certified System Administrator (CSA) for free with daily practice and sample questions. Paid plans unlock full timed exams, complete explanations, and domain analytics.
What CertGrid is (and is not)
CertGrid is an independent IT certification practice platform for Azure, AWS, Google, Cisco, Security, Linux, Kubernetes, Terraform, and other certification tracks. It provides objective-mapped practice questions, readiness scoring, weak-domain drills, and explanations to help learners understand what to study next.
Independent & original. CertGrid is an independent practice platform and is not affiliated with or endorsed by ServiceNow. Questions are original practice items designed to mirror certification concepts and exam style. CertGrid does not provide official exam questions or braindumps.