Which of the following is NOT supported by the Workflow Manager out of the box?
Which of the following is NOT supported by the Workflow Manager out of the box?A . REST/RESTCONF APIsB . Optical integration using TL1C . Shell command executionD . CLI command execution on SROS and third party routersView AnswerAnswer: B Explanation: TL1 (Transactional Language 1) is an older network management protocol...
Which of the following statements about the Nokia NSP is FALSE?
Which of the following statements about the Nokia NSP is FALSE?A . It is the Source of Truth.B . It uses NETCONF and YANG to provision the network.C . It can act as a Path Computation Element (PCE).D . It only manages Nokia equipment.View AnswerAnswer: D Explanation: The Nokia NSP...
Which of the following statements about the NSP Workflow Manager (WFM) application is FALSE?
Which of the following statements about the NSP Workflow Manager (WFM) application is FALSE?A . It allows network management tasks to be automated.B . Only one workflow can be executed at one time.C . Actions and expressions are extensible using Python.D . A workflow action can run against RESTCONF APIs.View...
Which character is used to separate the attributes of a Target with multiple attributes?
Which character is used to separate the attributes of a Target with multiple attributes?A . -B . /C . #D . View AnswerAnswer: C Explanation: In a variety of programming and configuration contexts, different characters are used as separators to distinguish between different parts of a string or data structure....
Which of the following is correct?
Convert the workflow full syntax to workflow simplified syntax. my_task: action: std.http input: url: http://mywebsite.org method: GET Which of the following is correct? A) my_task: action: std.http url= "http://mywebsite.org" B) my_task: action: std.http url= "http://mywebsite.org" input: method: GET C) my_task: action: url="http://mywebsite.org" D) my_task: action: std.http url= "http://mywebsite.org" method="GET"A . Option AB . Option BC . Option CD...
What task does Apache FreeMarker perform?
What task does Apache FreeMarker perform?A . It instantiates templates.B . Separates the configuration and data statesC . Transports YANG dataD . Allows communication between NSP applicationsView AnswerAnswer: A Explanation: Apache FreeMarker is a templating language used to create dynamic webpages. It is designed to separate the configuration and data...
Which of the following system actions will pause a workflow at some point and wait for an operator to confirm or deny a particular course of action?
Which of the following system actions will pause a workflow at some point and wait for an operator to confirm or deny a particular course of action?A . std. sleepB . nsp.waitC . nsp.user_inputD . nsp.pause_beforeView AnswerAnswer: C Explanation: This system action allows you to pause a workflow and prompt...
Which of the following statements about Kafka is FALSE?
Which of the following statements about Kafka is FALSE?A . It is a distributed messaging system.B . It is an open-source platform.C . It is used to send real-time notifications.D . It has four components: Producer, Consumer, Topic and Connector.View AnswerAnswer: D Explanation: Kafka is a distributed messaging system that...
Which of the following commands allows the action associated with a task to be run multiple times over a list of items?
Which of the following commands allows the action associated with a task to be run multiple times over a list of items?A . with-itemsB . concurrencyC . retryD . countView AnswerAnswer: A Explanation: According to the Mistral Workflow Language (v2) documentation1, which is one of the technologies that can be...
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?
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) my_task: action: std.http input: url: http://test.org method: GET B) my_task: action: std.http input: html: http://test.org method: GET C) my_task: action: std.http url= "http://test.org" method:="GET" D) my_task: action:...