When a selecting a data type for a field that will be displayed on a form, which of the following statements is NOT correct?
Correct Answer: C
The data type of a field determines the format, validation, and display of the field value on a form. When selecting a data type for a field, you should consider the purpose and function of the field. The statements A, C, and D are correct for selecting a data type for a field. For example: * Use the Choice data type to limit options in a field: The Choice data type allows you to create a field that has a predefined set of options for the user to select from. The options can be displayed as a drop-down list, radio buttons, or checkboxes. For example, you can use the Choice data type for a field that indicates the priority of a task. * Use the Phone Number data type to automate phone number data validation: The Phone Number data type allows you to create a field that accepts and validates phone numbers. The field will automatically format the phone number according to the user's locale and country code. For example, you can use the Phone Number data type for a field that stores the contact number of a user. * Use the string data type for a free-form text field: The string data type allows you to create a field that accepts any text input from the user. The field can have a maximum length of 255 characters. For example, you can use the string data type for a field that captures the short description of an incident. The statement B is not correct for selecting a data type for a field. There is no Data data type in ServiceNow. To enter the date and time of day, you should use the Date/Time data type. The Date/Time data type allows you to create a field that accepts and displays a date and time value. The field will use a calendar widget and a time picker to help the user enter the value. For example, you can use the Date/Time data type for a field that records the due date of a task. References: * [Field types] * [Date/Time field type]
CAD Exam Question 102
What is a function of an update set in ServiceNow Studio?
Correct Answer: A
Update Sets group configuration changes for deployment across environments (e.g., from dev to test). They don't track data or metrics. From Development Handbook 4.0.4, p. 213: "Update Sets are used to track and bundle changes, allowing developers to promote and test configuration updates between instances."
CAD Exam Question 103
When debugging Email Notifications, what must you check on a user record? Choose 2 answers
Correct Answer: A,D
Ensuring that users receive email notifications in ServiceNow requires verifying specific attributes on the user record: * A. The Email field must have a valid value: This is correct. The Email field should contain a valid email address, as notifications are sent to the address specified in this field. * B. The user must not be locked out: While it's important for user access, being locked out does not directly impact the sending of email notifications. * C. The First name and Last name fields must have values: These fields are for identification purposes and do not affect email notification delivery. * D. Active must be true: This is correct. Only active users are eligible to receive email notifications. If a user is marked as inactive, notifications will not be sent to them. * E. Delegation must be enabled: Delegation pertains to assigning responsibilities to another user and does not influence the receipt of email notifications. For effective email notification delivery, always ensure that the user's Email field contains a valid address and that the Active field is set to true.
CAD Exam Question 104
What field type would you select if you want to query records from another table on a form?
Correct Answer: D
In ServiceNow, to include data from another table within a form, the Reference field type is utilized. A Reference field creates a relationship between the current table and another table by storing a reference to a record in the target table. This allows users to select a record from the referenced table and display related information seamlessly within the form. * A. Use the Date field type: This is incorrect. The Date field type is designed to store date values and does not facilitate referencing records from other tables. * B. Use the Phone Number field type: This is incorrect. The Phone Number field type is intended for storing phone number data and does not support referencing other table records. * C. Use the String field type: This is incorrect. The String field type stores text data and does not inherently provide functionality to reference records from other tables. * D. Use the Reference field type: This is correct. The Reference field type is specifically designed to create a link to a record in another table, enabling the incorporation of related data into the form. For example, in the Incident table, the "Caller" field is a reference to the User [sys_user] table, allowing the selection of a user as the caller for the incident. This setup ensures data consistency and leverages existing records without data duplication. For more detailed information, refer to the official ServiceNow documentation on Reference Fields.
CAD Exam Question 105
When a ServiceNow instance requests information from a web service, ServiceNow is the web service:
Correct Answer: D
When a ServiceNow instance requests information from a web service, ServiceNow is the web service consumer. A web service consumer is an application that sends requests to a web service provider and receives responses from it. A web service provider is an application that exposes its functionality as web services. A web service publisher is a person or organization that publishes web services for others to use. A web service specialist is a person who has expertise in developing or using web services. Reference: Web services Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/integrate/web- services/ reference/r_AvailableWebServices.html