Category: Interview Questions
Updated on: September 29, 2025  |  0

Interview Questions GRIND 16

๐Ÿš€ ServiceNow Interview Questions Grind


ย Q1: What kind of emails does an Inbound Action accept?

๐Ÿ‘‰ Answer:
Inbound Actions in ServiceNow can process:

  • โœ‰๏ธ New emails โ†’ Create new records (e.g., Incident).

  • ๐Ÿ” Forwarded emails โ†’ Create or update based on forwarded data.

  • ๐Ÿ“ฉ Reply emails โ†’ Update existing records (e.g., add comments to an Incident).

๐Ÿ’ก Pro Tip: Email parsing relies on conditions + script logic in the Inbound Action.


Q2: What kind of basic administration work have you done?

๐Ÿ‘‰ Answer (Sample):

  • Adding users and managing groups.

  • Assigning roles to users and groups.

  • Performing day-to-day configurations (forms, lists, and notifications).

๐Ÿ“Œ Interview Hint: Show familiarity with User/Group/Role management โ€” a fundamental admin task.


Q3: How many instances does your current project have?

๐Ÿ‘‰ Answer:
Typically 3๏ธโƒฃ instances:

  1. ๐Ÿ› ๏ธ Development (Dev) โ†’ For building and testing configurations.

  2. ๐Ÿงช Test (QA/UAT) โ†’ For user testing and validations.

  3. ๐Ÿš€ Production (Prod) โ†’ Live instance used by end-users.

๐Ÿ’ก Pro Tip: Some companies also use Sub-Prod/Sandbox for training or POCs.


Q4: How do you migrate customizations and code between instances?

๐Ÿ‘‰ Answer:
Using Update Sets.

  • Capture changes in an Update Set in the source instance.

  • Move the Update Set to the target instance.

  • Review and commit it to apply changes.


Q5: What is an Update Set?

๐Ÿ‘‰ Answer:
An Update Set is a container ๐Ÿ—‚๏ธ used to capture and migrate customizations between instances.

๐Ÿ“Œ Process:

  1. Create a Local Update Set.

  2. Do the changes โ†’ they get recorded in the Update Set.

  3. Mark it as Complete when finished.

  4. Move it to another instance (e.g., Dev โ†’ Test).

๐Ÿ“Œ Example:
Instead of manually redoing a form configuration in Test, capture it in an Update Set in Dev and move it over.

๐Ÿ’ก Pro Tip: Data (like actual records) is not captured in Update Sets โ€” only configurations.


Q6: How do you migrate Update Sets?

๐Ÿ‘‰ Answer:

  1. In the Target instance, create an Update Source.

  2. Provide the credentials of the Source instance.

  3. Pull all Completed Update Sets.

  4. Review and Commit them in the Target instance.

โš ๏ธ Best Practice: Always preview Update Sets before committing to check for conflicts or missing dependencies.

Comments

No comments yet.


Log in to post a comment