A knowledge article must be which of the following states to display to a user?
Correct Answer: A
InServiceNow Knowledge Management, knowledge articles must be in a specificstatebefore they can be visible to end users. The correct state that allows users to view the article isPublished. Understanding Knowledge Article StatesKnowledge articles in ServiceNow go through alifecyclethat includes the following states: Draft- The article is being created or edited and isnot visibleto end users. Review- The article is under internal review by approvers before publication. It remainshiddenfrom users. Published- The article isapproved and publicly availableto users who have access to the Knowledge Base. Retired- The article is no longer relevant or has been replaced. It isnot visibleto end users. OnlyPublishedarticles appear in the Knowledge Base and can be accessed by users. Articles inDraft, Review, or Retiredstates arenot visibleto the general audience. B: Drafted- Articles inDraftare still being written or edited andcannot be accessed by users. C: Retired- Retired articles are considered obsolete and areno longer displayedin the Knowledge Base. D: Reviewed- Articles inRevieware under approval butare not yet visibleto users. ServiceNow Docs: Knowledge Article Stateshttps://docs.servicenow.com/en-US/bundle/utah-servicenow- platform/page/product/knowledge-management/concept/knowledge-article-states.html ServiceNow CSA Official Training Guide (Knowledge Management Lifecycle & Publishing Workflow) Why is "Published" the Correct Answer?Why the Other Options Are Incorrect?References from Certified System Administrator (CSA) Documentation:This confirms that aknowledge article must be in the "Published" stateto be visible to users in the Knowledge Base.
CSA Exam Question 32
Which three Variable Types can be added to a Service Catalog Item?
Correct Answer: D
In ServiceNow'sService Catalog, variables are used to capture user input when they request catalog items. These variables allow for dynamic and customized data collection for different service requests. Among the options provided, the three validvariable typesthat can be added to aService Catalog Itemare: Multiple Choice: This variable type presents users with multiple predefined options, but only allows them to selectoneanswer. Example: "What type of laptop do you need?" with options:MacBook, Windows Laptop, Chromebook. Select Box: Similar to Multiple Choice but presented in a drop-down format, making it useful when space needs to be conserved in a form. Example: "Select your department" with a drop-down list ofIT, HR, Finance, etc. Checkbox: A simpleTrue/Falsevariable that allows users to check a box to indicate a selection. Example: "Do you need an external monitor?" (Checkbox can be checked for 'Yes' or left unchecked for 'No'). Option A (True/False, Multiple Choice, and Ordered) True/Falseis not a variable type in the Service Catalog. ServiceNow usesCheckboxfor Boolean (Yes/No) values instead. Orderedisnot a valid Service Catalog variable type. Option B (True/False, Checkbox, and Number List) True/False is incorrect(ServiceNow uses "Checkbox" instead). Number List is not a valid Service Catalog variable type. Option C (Number List, Single Line Text, and Reference) Number List is not a valid variable type. Single Line Text and Reference are valid variables but were not all correct in this case. ServiceNow Docs: Service Catalog Variableshttps://docs.servicenow.com/en-US/bundle/utah-it-service- management/page/product/service-catalog-management/concept/c_ServiceCatalogVariables.html ServiceNow CSA Official Training Guide (Service Catalog & Request Management) Why the other options are incorrect?References from Certified System Administrator (CSA) Documentation:
CSA Exam Question 33
Tables may have a One to Many relationships. From the Service Catalog, what are examples of tables having a one to many relationships? (Choose three.)
Correct Answer: B,C,D
In theServiceNow Service Catalog module, tables have aOne-to-Many (1:M) relationship, meaning a single record in one table can relate to multiple records in another table. This is especially important for handling Service Catalog requests, as multiple items, approvals, and tasks may be associated with a single request. One Request can have many Requested Items (REQ # RITM) ARequest (REQ)is a container for multipleRequested Items (RITM). When a user submits a catalog request, multiple items (such as a laptop and a phone) can be ordered in the same request. Table Relationship:sc_request(Request) #sc_req_item(Requested Item) One Requested Item can have many Approvals (RITM # Approval) SomeRequested Items (RITM)require approval before being fulfilled. For example, a laptop purchase might need approvals from both the IT department and a manager. Table Relationship:sc_req_item(Requested Item) #sysapproval_approver(Approval) One Requested Item can have many Catalog Tasks (RITM # SCTASK) ARequested Item (RITM)can generate multipleCatalog Tasks (SCTASK)for different fulfillment teams. For example, if an employee requests a new laptop, one task might go to IT to set it up, while another goes to finance for cost approval. Table Relationship:sc_req_item(Requested Item) #sc_task(Catalog Task) Breakdown of Correct Answers:Incorrect Answers Explanation:A.One Approval can have many Requests Approvals do not relate to multiple requests. Instead, a request may contain multiple approvals. E:One Cart can have many Requests TheCartis only a temporary storage of items before checkout. Once submitted, it generates asingle Request (REQ), not multiple requests. ServiceNow Product Documentation# "Understanding Service Catalog Tables and Relationships" ServiceNow Data Model# "Request, Requested Item, and Catalog Task Relationships" References from Certified System Administrator (CSA) Documentation: