Question 235 of 500
Creating and customizing tables and datahardMultiple ChoiceObjective-mapped

Quick Answer

The answer is to rewrite the after query business rule to use GlideAggregate or avoid dot-walking in loops, and consider caching the dot-walked data. This is the most effective action because the after query business rule is the primary performance killer: it executes for every record returned by the query, and dot-walking through multiple related tables—such as current.assigned_to.department.manager.email—generates a separate SQL join or subquery per record, dramatically slowing form load time on a table with 150 fields and over 50,000 active records. On the ServiceNow Certified Application Developer CAD exam, this scenario tests your understanding of business rule execution order and the performance impact of after query operations, especially when combined with heavy client-side scripts. A common trap is to assume removing fields or client scripts will fix the issue, but the real bottleneck is the server-side loop. Memory tip: think "after query = after every row, so avoid dot-walks in loops or use GlideAggregate to batch the data."

SNOW-CAD Creating and customizing tables and data Practice Question

This SNOW-CAD practice question tests your understanding of creating and customizing tables and data. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A large enterprise runs a ServiceNow instance with a heavily customized Task table. The 'Task' table has been extended to create 'u_WorkOrder', which is used by over 50,000 active records. Recently, users complain that when they open a WorkOrder record, the form takes more than 10 seconds to load. On investigation, you discover that the 'u_WorkOrder' table has 150 fields, many of which are UI policies and client scripts that trigger on load. Additionally, there is a business rule that runs 'after query' and dot-walks through multiple related tables (e.g., calling 'current.assigned_to.department.manager.email' in a loop for each record). The instance uses SQL Server as its database. Which action would most effectively reduce the form load time without losing required functionality?

Question 1hardmultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Rewrite the after query business rule to use GlideAggregate or avoid dot-walking in loops, and consider caching the dot-walked data

Option C is the most effective because it addresses the primary performance killer: the after query business rule that performs expensive dot-walking for every record. Option A is wrong because removing fields may lose functionality. Option B is wrong because it doesn't fix the slow business rule. Option D is wrong because ordering does not affect the heavy operation.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Change the order of the business rule to 100 so that it runs after other rules

    Why it's wrong here

    Ordering affects the sequence but does not reduce the processing time. The rule still runs and causes the same delay.

  • Rewrite the after query business rule to use GlideAggregate or avoid dot-walking in loops, and consider caching the dot-walked data

    Why this is correct

    The dot-walking in a loop per record is extremely slow. Using GlideAggregate for batch queries or caching results in a system property can drastically reduce query time.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Remove 50 of the 150 fields from the table to reduce data retrieval

    Why it's wrong here

    While reducing fields can help, it may remove required functionality and the main bottleneck is the business rule. Also, fields are not loaded until the form is opened, so the impact is limited.

  • Convert the after query business rule to an after update business rule

    Why it's wrong here

    Changing the trigger to 'after update' would not fire on query, but the business rule's purpose may be to pre-fetch data for display; moving it to update might not help the load time.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Many certification questions include familiar terms but test a specific constraint. Read the exact wording before choosing an answer that is generally true but wrong for this case.

Detailed technical explanation

How to think about this question

This question should be treated as a scenario, not a definition check. Identify the problem, the constraint and the best action. Then compare each option against those facts.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.
  • Use explanations to understand the rule behind the answer.

TExam Day Tips

  • Underline the problem statement mentally.
  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the SNOW-CAD exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which SNOW-CAD exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.

Related practice questions

Related SNOW-CAD practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SNOW-CAD practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SNOW-CAD question test?

Creating and customizing tables and data — This question tests Creating and customizing tables and data — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Rewrite the after query business rule to use GlideAggregate or avoid dot-walking in loops, and consider caching the dot-walked data — Option C is the most effective because it addresses the primary performance killer: the after query business rule that performs expensive dot-walking for every record. Option A is wrong because removing fields may lose functionality. Option B is wrong because it doesn't fix the slow business rule. Option D is wrong because ordering does not affect the heavy operation.

What should I do if I get this SNOW-CAD question wrong?

Identify which SNOW-CAD exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 24, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This SNOW-CAD practice question is part of Courseiva's free ServiceNow certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SNOW-CAD exam.