Nokia 4A0-AI1 Practice Test - Questions Answers, Page 5

List of questions
Question 41

Which Workflow state allows a Workflow to be executed?
According to the Workflow Manager User Guide from Nokia, the correct answer is C. Published.
When a workflow is in the Published state, it can be executed by users who have the appropriate permissions. The Draft state is used during the creation of a new workflow, while the Deprecated state indicates that a workflow is no longer supported and should not be used. The Released state is not mentioned in the context of workflow execution.
Question 42

Which of the following is the proper FULL syntax to describe a workflow task using the std.hrtp action to access a url using the GET method?
A)
B)
C)
D)
Question 43

Which of the following commands allows the action associated with a task to be run multiple times over a list of items?
According to the Mistral Workflow Language (v2) documentation1, which is one of the technologies that can be used in a NSP workflow2, with-items is a task property that allows the action associated with a task to be run multiple times over a list of items1. The syntax for using with-items is:
task_name:
action:<action_name>
input:
<input_name>:<%item()%>
with-items:itemin<list>
You need to replace <action_name>, <input_name>, and <list> with your desired values. You can also use other properties such as concurrency, retry, or count to control how many iterations are executed in parallel, how many times an iteration is retried if it fails, or how many times an iteration is executed respectively1.
Question 44

Which of the following timing attributes will halt the entire workflow and require user intervention to proceed?
This attribute specifies a manual approval step before executing a task1. The other attributes will either delay or abort the execution of a task, but not halt the entire workflow.
Question 45

Which input is optional when using the std.ssh action to access a remote server?
the input that is optional when using the std.ssh action is cmd. This parameter specifies the command to be executed on the remote server1. If this parameter is not provided, the action will only establish an SSH connection with the remote server and return its output1. The other parameters are required to authenticate and connect to the remote server.
Question 46

Based on the exhibit, which of the following is the proper syntax to publish ONLY information about the RTT to the workflow context?
A)
B)
C)
D)
This syntax assumes that there is a previous task that returns an object with an attribute named rtt that contains the round-trip time value1. The expression <% task().result.rtt %> evaluates to this value and assigns it to the variable rtt in the workflow context1.
Question 47

Which feature can be used to make a workflow portableif the workflow needs to be executed on either a development or production lab)?
a workflow can use environments to make it portable if the workflow needs to be executed on either a development or production lab. Environments are files that contain key-value pairs that can be used as input parameters for workflows1. Environments allow workflows to be executed with different settings without modifying the workflow definition1.
Question 48

How long is the system token valid before expiring?
Question 49

Which of the following best describes an ad-hoc action?
Question 50

Which of the following NSP CLI actions uses the network element's NE ID to establish communication?
Question