ServiceNow Certified Application Developer

Here you have the best ServiceNow CAD practice exam questions

  • You have 140 total questions to study from
  • Each page has 5 questions, making a total of 28 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on November 14, 2024
Question 1 of 140

Which of the following statements is true for the Form Designer? a) To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form. b) To create a new field on a form's table, drag the appropriate data type from the Field Types tab to the form and then configure the new field. c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button. d) To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.

    Correct Answer: C

    To accurately use the Form Designer, there are specific actions associated with modifying the form layout. Firstly, to add a field to the form layout, one needs to drag the field from the Fields tab to the desired location on the form. Secondly, creating a new field on a form's table involves dragging the necessary data type from the Field Types tab to the form and then configuring the new field. Thirdly, adding a section to the form layout requires dragging it from the Field Types tab to the desired destination on the form. However, removing a field does not involve hovering over it to display Action buttons and selecting the Delete (X) button; typically, this is not the standard approach in most form design interfaces. Therefore, the correct options are a, b, and d.

Question 2 of 140

Which of the following are configured in an Email Notification? a) Who will receive the notification. b) What content will be in the notification. c) When to send the notification. d) How to send the notification.

    Correct Answer: A

    In an email notification configuration, the key elements typically involved are: specifying who will receive the notification, deciding what content will be included in the notification, and determining when the notification should be sent. While 'how to send the notification' might involve technical setup and options like SMS, push notifications, or email protocols, the primary focus in standard email notification settings remains on the recipient, content, and timing.

Question 3 of 140

To see what scripts, reports, and other application artifacts will be in a published application:

    Correct Answer: C

    To see what scripts, reports, and other application artifacts will be in a published application, you need to examine the Application Files Related List in the application to be published. This related list provides a comprehensive view of all the tangible components or artifacts that are part of the application, allowing developers to review and verify the contents before publication.

Question 4 of 140

Which one of the following is NOT a debugging strategy for client-side scripts?

    Correct Answer: D

    gs.log() is a server-side logging function in ServiceNow and cannot be used for debugging client-side scripts. Client-side debugging strategies include using g_form.addInfoMessage(), Field Watcher, and jslog(), which are all tools available for client-side script debugging.

Question 5 of 140

Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?

    Correct Answer: B

    If the 'Can read' configuration field is not selected, the options to 'Can create,' 'Can update,' and 'Can delete' are not available. This is because read access is a prerequisite for any other access control actions on the table. Without being able to read the records, creating, updating, or deleting them would not be feasible.