Text preview & study summary

ServiceNow Fundamentals Platform Navigation and Core Concepts

A free sample of 5 questions from this quiz, shown in full with answer choices and explanations. No interactivity — everything is visible on this page for study and review.

Want to test your knowledge? Launch the Interactive Exam Simulator

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.