Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

Application Development Fundamentals

Beoordeling
-
Verkocht
-
Pagina's
74
Cijfer
A+
Geüpload op
01-08-2025
Geschreven in
2025/2026

Application Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development FundamentalsApplication Development Fundamentals

Meer zien Lees minder
Instelling
Application Development Fundamentals
Vak
Application Development Fundamentals

Voorbeeld van de inhoud

Application Development Fundamentals




ServiceNow Desktop applications automatically run on which platform(s):



A. Desktop

B. Smartphone

C. Desktop and Smartphone

D. Desktop and Tablet - (correct Answer) - D. Desktop and Tablet



(ServiceNow Certified Application Developer Exam Specification - Sample Question)

You are writing an Async Business Rule for a table in a different scope than the Business Rule record.
Which one of the following database operations CANNOT be part of the Async Business Rule's
configuration?



A. Query

B. Update

C. Delete

D. Insert - (correct Answer) - A. Query



(ServiceNow Certified Application Developer Exam Specification - Sample Question)

Which one of the following is NOT a GlideUser (g_user) method?



A. userName()

B. getFullName()

C. hasRole()

D. hasRoleExactly() - (correct Answer) - A. userName()

,(ServiceNow Certified Application Developer Exam Specification - Sample Question)

How do you configure a Scheduled Job to execute on the last day of every month?



A. Set the Run field value to Periodically and the Repeat Interval value to 31

B. Set the Run field value to Periodically and the Repeat Interval value to Last Day

C. Set the Run field value to Monthly and the Day field value to 31

D. Set the Run field value to Monthly and the Day field value to Last Day - (correct Answer) - C. Set the
Run field value to Monthly and the Day field value to 31



(ServiceNow Certified Application Developer Exam Specification - Sample Question)

Which utility is used to determine if field names in an Import Set match the field names on the target
table when importing data into ServiceNow?



A. Transform Maps

B. Auto Map Matching Fields

C. CI Relationship Builder

D. Business Service Management Map - (correct Answer) - B. Auto Map Matching Fields



(ServiceNow Certified Application Developer Exam Specification - Sample Question)

When managing global application files, you can NOT:



A. Add files from global scope to a global application

B. Remove files from a global application

C. Move an application file between global applications

D. Move application files into or out of a scoped application - (correct Answer) - D. Move application files
into or out of a scoped application



(ServiceNow Certified Application Developer Exam Specification - Sample Question)

,Which of these classes are part of the ServiceNow client-side API? More than one response may be
correct.



A. GlideSystem (gs)

B. GlideUser (g_user)

C. GlideDateTime

D. GlideDate

E. GlideForm (g_form) - (correct Answer) - B and E are correct. GlideUser and GlideForm are part of the
ServiceNow client-side API.



(ServiceNow Application Developer Learning Plan - Client-side Scripting)

When do onSubmit Client Scripts execute their script logic? More than one response may be correct.



A. When a user clicks the Submit button.

B. When a user clicks the Delete button.

C. When a user clicks the Update button.

D. When a user clicks the Save menu item in the Additional Actions menu.

E. When a user clicks the Lookup button on a reference field. - (correct Answer) - A, C, and D. onSubmit
Client Scripts execute their script logic whenever a user saves, submits, or updates a record in a form.



(ServiceNow Application Developer Learning Plan - Client-side Scripting)

True or False? A single Client Script can execute its script logic when a user loads a record into a form
AND when a user saves/submits/updates a form. - (correct Answer) - False. A single Client Script can be
either onLoad OR onSubmit but cannot be both. The Type field determines whether a Client Script is an
onLoad or an onSubmit Client Script.



(ServiceNow Application Developer Learning Plan - Client-side Scripting)

True or False? A single Client Script can execute its script logic when a user loads a record into a form
AND when a user changes a value in a field. - (correct Answer) - True. This question is a little tricky. You
must examine the Client Script trigger configuration as well as the onChange Client Script script
template. When the Client Script Type field value is onChange, the script template includes logic to check

, whether the field value changed due to a form load. When a form loads a record from the database, all
field values on the form change from no value to the values in the record being loaded from the
database. The default client script logic returns (does not execute the remaining script logic) if the
isLoading value is true. The isLoading value is true if the field value changed due to a form load.



(ServiceNow Application Developer Learning Plan - Client-side Scripting)

True or False? UI Policies require scripting to make form fields Mandatory, Visible, or Read only. - (correct
Answer) - False. Use UI Policy Actions to set field attributes without scripting.



(ServiceNow Application Developer Learning Plan - Client-side Scripting)

When can UI Policies execute their logic? More than one response may be correct.



A. When a record is loaded into a form

B. When field values change on a form

C. When a form is saved, submitted, or updated

D. When a Client Script executes

E. When a record is loaded into a list - (correct Answer) - A and B. The On load option determines
whether a UI Policy executes its logic when a record is loaded into a form. UI Policy logic also executes
whenever the Conditions field evaluates to true.



(ServiceNow Application Developer Learning Plan - Client-side Scripting)

Which of the following is a strategy for debugging Client Scripts or UI Policies? More than one response
may be correct.



A. Browser's Developer Console

B. Debug UI Policies module

C. JavaScript try/catch

D. JavaScript Log and jslog()

E. Field Watcher - (correct Answer) - All of the responses are debugging strategies for client-side script
logic.

Geschreven voor

Instelling
Application Development Fundamentals
Vak
Application Development Fundamentals

Documentinformatie

Geüpload op
1 augustus 2025
Aantal pagina's
74
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$13.49
Krijg toegang tot het volledige document:

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

Maak kennis met de verkoper
Seller avatar
jamrefjm

Maak kennis met de verkoper

Seller avatar
jamrefjm NURSING
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
1
Lid sinds
2 jaar
Aantal volgers
1
Documenten
768
Laatst verkocht
1 maand geleden

0.0

0 beoordelingen

5
0
4
0
3
0
2
0
1
0

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen