ServiceNow Fundamentals Platform Navigation and Core Concepts

By Marcus Chen · Updated Jul 10, 2026

Questions22
Passing Score75%
Format64% Multiple Choice
Sessions Logged566
Your progressLog in / Register to track times taken, best score, questions mastered, and coverage on this quiz.
Rating
Community rating 4.4 out of 5 from 37 ratings.
4.4 (37)

Topics covered

This quiz

Uncategorized22 (100%)

Uncategorized22 questions

Discussion

Log in to post a comment, reply, or expand a question.

Q-8780

Question Q-8780 Which ServiceNow feature provides a **visual representation of the relationships…

2 comments · last active Jun 7, 2026

  • J_g_alt · Mar 18, 5:19 AM

    ACL defines read/write/create/delete on tables and fields — security layer, not reporting or workflows.

  • tartcap78 · Jun 7, 4:27 PM

    Roles aggregate into groups; ACLs evaluate role + condition — fundamentals keeps it simpler.

Q-8765

Question Q-8765 In ServiceNow, a **Business Rule** is BEST described as:

2 comments · last active Jun 1, 2026

  • BloomingPine · Mar 10, 5:18 AM

    Business Rule = server-side on insert/update/delete/query. Client Script onChange runs in browser only.

    +2 votes
  • mark_marq · Jun 1, 4:08 AM

    Scheduled job every minute is not event-driven record automation.

Q-8771

Question Q-8771 **Statement:** ServiceNow's **Update Sets** capture all configuration changes made in…

2 comments · last active Mar 22, 2026

  • tophergrace2 · Mar 21, 8:36 PM

    Fill-in sys_id — 32-char unique primary key on every record. Never duplicate, never changes.

  • Ithinkimprettygay · Mar 22, 2:36 AM

    Number field is human-friendly; sys_id is what GlideRecord actually stores for references.

Q-8768

Question Q-8768 Which of the following ServiceNow components execute on the **server…

2 comments · last active Mar 20, 2026

  • JimiOriginal · Mar 20, 3:02 AM

    Server-side scripting: Business Rules + Script Includes. Client Scripts and UI Policies are browser layer.

  • hadenfarrell · Mar 20, 2:02 PM

    UI Actions can run client or server script — read question carefully if they ask 'always server'.

Q-8763

Question Q-8763 What is the **Application Navigator** in ServiceNow?

2 comments · last active Mar 15, 2026

  • Ferrazzo · Mar 15, 1:00 AM

    Application Navigator = left panel modules/apps — not the form, not the filter, not Studio.

  • whitedaykotori · Mar 15, 8:00 AM

    New hires call it 'the sidebar' — exam says Application Navigator.

Q-8776

Question Q-8776 Place the following steps for **creating a new Catalog Item**…

3 comments · last active Mar 9, 2026

  • notorioususb · Mar 7, 5:45 AM

    Catalog item sequencing: Maintain Items → New → Variables → Fulfillment → Workflow/Flow → Publish. Order matters on exam.

  • LostBoy611 · Mar 8, 1:45 AM

    Publishing before workflow configured = broken item visible to users — publish last.

  • Agent3449 · Mar 9, 12:45 PM

    I wrote the order on scratch paper: C E A F D B — saved me.

Q-8781

Question Q-8781 In ServiceNow's **scoped application** model, which of the following is…

2 comments · last active Mar 8, 2026

  • kalgoop · Mar 8, 4:33 AM

    Efficient GlideRecord: addQuery priority and state BEFORE query() — pushes filter to DB. No while-loop client-side filter.

    +2 votes
  • Dentrecheigh1a · Mar 8, 5:33 PM

    gr.query() with no conditions on incident table is a performance anti-pattern even in fundamentals.

Q-8767

Question Q-8767 Which of the following are valid **ServiceNow table types**? *(Select…

2 comments · last active Mar 8, 2026

  • Jer456556412 · Mar 7, 4:37 PM

    Table types multi-answer: base (task), extended (incident extends task), reference/choice tables — not 'all tables are standalone'.

  • nanana123565 · Mar 8, 11:37 AM

    Extension inherits fields and behaviors — huge platform concept for later certs.

Q-8772

Question Q-8772 In ServiceNow, the unique identifier automatically assigned to every record…

2 comments · last active Mar 6, 2026

  • timeasy · Mar 5, 4:26 PM

    Reusable server logic = Script Include (can be class-based). Business Rule is event-triggered, not general library.

  • hamessmith · Mar 6, 7:26 AM

    Script Includes also support GlideAjax when client-callable — fundamentals may only ask server reuse.

Q-8782

Question Q-8782 What does **MID Server** stand for in ServiceNow, and what…

2 comments · last active Mar 5, 2026

  • Tylerpipy · Mar 4, 7:22 AM

    Service Portal = end-user facing requests, KB search, ticket status — not admin config UI.

  • Bill_100 · Mar 5, 1:22 AM

    Employee Center is HR/CSM evolution; classic Service Portal still fundamentals vocabulary.

Q-8769

Question Q-8769 **Statement:** In ServiceNow, every table automatically inherits fields from the…

2 comments · last active Mar 4, 2026

  • taz210 · Mar 3, 4:25 PM

    UI Policy can make mandatory on form but does NOT enforce on import/API — False on strict enforcement question.

  • Darkheart747 · Mar 4, 2:25 PM

    Pair UI Policy with Data Policy when you need both UX and platform enforcement.

Question catalog for this preview

Catalog listing of the 5 preview questions for this quiz.

Question 1

In ServiceNow, a **Business Rule** is BEST described as:

Answer choices

  • A. A server-side script that runs when a database record is created, updated, deleted, or queried (Correct)

  • B. A client-side script that runs in the user's browser when a form loads

  • C. A policy document stored in the Knowledge Base

  • D. A workflow approval step triggered by email notification

Explanation

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.

Question 2

ServiceNow is primarily delivered as which type of service?

Answer choices

  • A. On-premises software installed on local servers

  • B. Platform as a Service (PaaS) / Software as a Service (SaaS) delivered via the cloud (Correct)

  • C. Infrastructure as a Service (IaaS) requiring customer-managed hardware

  • D. An open-source framework installed by system administrators

Explanation

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.

Question 3

**Statement:** In ServiceNow, every table automatically inherits fields from the **Task [task]** table.

Answer choices

  • A. True

  • B. False (Correct)

Explanation

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.

Question 4

Which of the following ServiceNow components execute on the **server side**? *(Select TWO)*

Answer choices

  • A. Client Scripts

  • B. Business Rules (Correct)

  • C. UI Policies

  • D. Script Includes (Correct)

  • E. Catalog Client Scripts

Explanation

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.

Question 5

What does **MID Server** stand for in ServiceNow, and what is its primary purpose?

Answer choices

  • A. Management Identification Daemon — used for naming configuration items

  • B. Mid-tier Integration Daemon — serves as a relay between ServiceNow and on-premises resources behind a firewall (Correct)

  • C. Metadata Integration Driver — used to sync update sets between instances

  • D. Module Interface Director — manages API communication between the service portal and back-end tables

Explanation

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.