Question 6 of 45

Which two use cases are valid for Cisco WAN Automation Engine? (Choose two.)

    Correct Answer: B, C

    Cisco WAN Automation Engine (WAE) primarily focuses on network design, planning, and optimization, leveraging network abstraction which includes topology, configuration, and traffic details. One of its main use cases is integrating with Cisco XTC (Crosswork Traffic Controller) to enhance network control and optimizations. Additionally, WAE is commonly used for performing what-if analysis, where it can simulate and analyze network failures, topology changes, and traffic demands to aid in decision-making and planning.

Question 7 of 45

Which schema allows device configuration elements to be enclosed within a remote procedure call message when NETCONF is implemented?

    Correct Answer: B

    The NETCONF (Network Configuration Protocol) protocol uses XML as the default encoding mechanism for all remote procedure call (RPC) requests and responses. XML allows device configuration elements to be enclosed within messages, enabling structured data to be exchanged between a client and a server in a robust and standardized way. Thus, for NETCONF implemented device configurations, XML is integral to the protocol's function.

Question 8 of 45

What are two characteristics of the NFV architecture approach? (Choose two.)

    Correct Answer: A, E

    The NFV (Network Functions Virtualization) architecture approach includes the characteristic of decoupling network functions from proprietary hardware appliances, enabling flexible and scalable network services through software running on standard hardware. Additionally, an NFV environment typically includes a hypervisor, which is used to manage virtual machines that run the network functions, providing the necessary virtualization layer to support the decoupling of hardware and software.

Question 9 of 45

A Cisco NSO service has just been deployed. Which Cisco NSO CLI command is used to inspect the resulting device configuration changes before the changes are pushed to the network?

    Correct Answer: B

    The correct command to inspect the resulting device configuration changes before they are pushed to the network in Cisco NSO is 'commit dry-run outformat native'. This command simulates the commit operation and displays the configuration changes that would be applied, allowing for inspection before actual deployment.

Question 10 of 45

Refer to the exhibit. Regarding the Python script using YDK, what is the result for a device that is running Cisco IOS XR Software?

    Correct Answer: D

    The Python script uses YDK (Yang Development Kit) to interact with a Cisco IOS XR device. The script connects to the device using NetconfServiceProvider and retrieves the system time through the CRUDService. Specifically, it accesses the uptime of the system time and converts it into a human-readable format using the timedelta function. Hence, the script essentially prints out the system uptime.