Question Q-8780 Which ServiceNow feature provides a **visual representation of the relationships…
2 comments · last active Jun 7, 2026
By Marcus Chen · Updated Jul 10, 2026
| Questions | 22 |
| Passing Score | 75% |
| Format | 64% Multiple Choice |
| Sessions Logged | 566 |
| Your progress | Log in / Register to track times taken, best score, questions mastered, and coverage on this quiz. |
| Rating |
Uncategorized22 questions
Log in to post a comment, reply, or expand a question.
Business Rule = server-side on insert/update/delete/query. Client Script onChange runs in browser only.
Scheduled job every minute is not event-driven record automation.
Fill-in sys_id — 32-char unique primary key on every record. Never duplicate, never changes.
Number field is human-friendly; sys_id is what GlideRecord actually stores for references.
Server-side scripting: Business Rules + Script Includes. Client Scripts and UI Policies are browser layer.
UI Actions can run client or server script — read question carefully if they ask 'always server'.
Application Navigator = left panel modules/apps — not the form, not the filter, not Studio.
New hires call it 'the sidebar' — exam says Application Navigator.
Catalog item sequencing: Maintain Items → New → Variables → Fulfillment → Workflow/Flow → Publish. Order matters on exam.
Publishing before workflow configured = broken item visible to users — publish last.
I wrote the order on scratch paper: C E A F D B — saved me.
Efficient GlideRecord: addQuery priority and state BEFORE query() — pushes filter to DB. No while-loop client-side filter.
gr.query() with no conditions on incident table is a performance anti-pattern even in fundamentals.
Table types multi-answer: base (task), extended (incident extends task), reference/choice tables — not 'all tables are standalone'.
Extension inherits fields and behaviors — huge platform concept for later certs.
Reusable server logic = Script Include (can be class-based). Business Rule is event-triggered, not general library.
Script Includes also support GlideAjax when client-callable — fundamentals may only ask server reuse.
Service Portal = end-user facing requests, KB search, ticket status — not admin config UI.
Employee Center is HR/CSM evolution; classic Service Portal still fundamentals vocabulary.
UI Policy can make mandatory on form but does NOT enforce on import/API — False on strict enforcement question.
Pair UI Policy with Data Policy when you need both UX and platform enforcement.
Catalog listing of the 5 preview questions for this quiz.
In ServiceNow, a **Business Rule** is BEST described as:
Business Rules are server-side scripts written in JavaScript that execute on the ServiceNow server when records in a specific table are inserted, updated, deleted, or queried. They are used for data validation, field auto-population, and triggering actions. Client Scripts, by contrast, run in the user's browser on form load, field change, or form submission.
ServiceNow is primarily delivered as which type of service?
ServiceNow is a cloud-based Platform as a Service (PaaS) and SaaS solution. Customers access it through a web browser without managing underlying infrastructure. This delivery model enables rapid deployment, automatic upgrades, and global scalability—key differentiators of the Now Platform.
**Statement:** In ServiceNow, every table automatically inherits fields from the **Task [task]** table.
Only tables that explicitly extend the Task table inherit its fields. Task is a base table, and service management tables like Incident, Problem, Change Request, and Service Request all extend it. However, custom tables or other tables (like User [sys_user], Knowledge [kb_knowledge]) do not extend Task and do not inherit its fields.
Which of the following ServiceNow components execute on the **server side**? *(Select TWO)*
Business Rules and Script Includes are server-side components. Business Rules execute on the database layer when records are created/updated/deleted. Script Includes are reusable JavaScript libraries called from other server-side scripts. Client Scripts, UI Policies, and Catalog Client Scripts all execute in the user's browser (client side) and interact with the form UI.
What does **MID Server** stand for in ServiceNow, and what is its primary purpose?
MID Server stands for Management, Instrumentation, and Discovery Server. It is a Java application installed on a server within the customer's network that acts as a relay between the ServiceNow cloud instance and on-premises systems that cannot be directly accessed from the internet. It is essential for Discovery, Orchestration, and integrations with internal systems.
ACL defines read/write/create/delete on tables and fields — security layer, not reporting or workflows.
Roles aggregate into groups; ACLs evaluate role + condition — fundamentals keeps it simpler.