Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

Certifications›350-401›Objectives›Model-Driven Telemetry
Objective 605.0

Model-Driven Telemetry

350-401 Practice Questions

Full Practice Test →All Objectives

350-401 Model-Driven Telemetry — Practice Questions

30 questions from this objective

Question 2mediummultiple choice
Read the full network assurance explanation →

A network engineer is configuring model-driven telemetry on a Cisco IOS-XE router to stream interface statistics to a collector using gRPC. The engineer wants to ensure that the telemetry data is sent only when there is a change in the interface counters, rather than at a fixed interval. Which configuration parameter should the engineer use to achieve this behavior?

Question 3mediummultiple choice
Open the full BGP breakdown →

A network engineer is deploying model-driven telemetry on a Cisco Nexus 9000 switch to monitor BGP prefix changes. The engineer wants to use YANG data models and prefers a transport protocol that is lightweight and uses UDP. Which transport protocol should the engineer select for the telemetry stream?

Question 4hardmultiple choice
Read the full REST/YANG explanation →

A network engineer is configuring model-driven telemetry on a Cisco IOS-XE router to stream CPU and memory statistics to a collector. The engineer wants to use the YANG model 'Cisco-IOS-XE-process-cpu-oper' and 'Cisco-IOS-XE-memory-oper'. After configuring the telemetry subscription, the engineer notices that no data is being received at the collector. The collector is reachable and the gRPC dial-out is configured correctly. What is the most likely cause of the issue?

Question 5hardmultiple choice
Read the full network assurance explanation →

A network engineer is designing a model-driven telemetry solution for a large enterprise network with thousands of devices. The engineer wants to minimize the load on the network devices and the collector by sending data only when significant changes occur. The engineer decides to use on-change subscriptions. However, after deployment, the engineer notices that some subscriptions are sending updates too frequently, causing high CPU usage on the devices. What is the most likely reason for this excessive update frequency?

Question 6mediummultiple choice
Open the full BGP breakdown →

A network engineer is configuring model-driven telemetry on a Cisco IOS-XE router to stream BGP route updates to a collector using gRPC dial-out. The engineer wants to ensure that the telemetry data is encrypted in transit. Which additional configuration is required to secure the gRPC telemetry stream?

Question 7hardmultiple choice
Open the full VLAN trunking answer →

A network engineer is implementing model-driven telemetry on a Cisco Nexus 9000 switch to monitor VLAN and STP changes. The engineer wants to use the native telemetry protocol with UDP as the transport. After configuring the telemetry subscription with the 'destination-group' and 'sensor-group', the engineer notices that the collector is not receiving any data. The collector is reachable and the UDP port is open. What is the most likely missing configuration?

Question 8mediummultiple choice
Read the full network assurance explanation →

A network engineer is troubleshooting a model-driven telemetry deployment on a Cisco IOS-XE router. The telemetry subscription is configured to stream interface statistics using gRPC dial-out to a collector at 10.1.1.100:50051. The engineer verifies that the collector is listening on the port and the router can reach it. However, the collector shows no data received. The engineer checks the router's telemetry logs and sees 'Connection refused' errors. What is the most likely cause?

Question 9hardmultiple choice
Read the full network assurance explanation →

A network engineer is planning to deploy model-driven telemetry in a brownfield network with a mix of Cisco IOS-XE and Nexus devices. The engineer wants to use a single collector that supports both gRPC and UDP-based telemetry. The engineer is concerned about the scalability of the solution, as the network has over 5000 devices. Which design consideration is most important to ensure the telemetry solution scales effectively?

Question 10easymultiple choice
Review the full OSPF breakdown →

A network engineer is configuring model-driven telemetry on a Cisco IOS-XE router to stream OSPF neighbor state changes. The engineer uses the YANG model 'Cisco-IOS-XE-ospf-oper' and creates an on-change subscription. After testing, the engineer notices that the telemetry data is being sent, but the collector is receiving duplicate updates for the same OSPF neighbor state change. What is the most likely cause of these duplicate updates?

Question 11mediummultiple choice
Study the full Python automation breakdown →

A network engineer writes the following Python script to collect telemetry data from a Cisco IOS-XE device using NETCONF:

```python

from ncclient import manager

m = manager.connect( host='192.168.1.1', port=830,

username='admin',

password='cisco', hostkey_verify=False )

filter = ''' <filter xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"> <interfaces xmlns="http://openconfig.net/yang/interfaces"> <interface> <name>GigabitEthernet1</name> </interface> </interfaces> </filter> '''

reply = m.get(filter=('subtree', filter))

print(reply.xml)

m.close_session() ```

What is the issue with this code?

Question 12hardmultiple choice
Read the full Ansible explanation →

An engineer creates an Ansible playbook to configure model-driven telemetry on a Cisco IOS-XE device:

```yaml --- - name: Configure MDT subscription hosts: ios_xe gather_facts: no tasks: - name: Configure telemetry receiver cisco.ios.ios_config: lines: - telemetry ietf subscription 101 - receiver ip address 10.10.10.10 port 57500 protocol grpc-tcp - encoding encode-kvgpb - filter xpath /interfaces/interface/state/counters - update-policy periodic 5000 ```

What is the problem with this playbook?

Question 13easymultiple choice
Read the full REST/YANG explanation →

A developer sends a RESTCONF request to retrieve interface statistics from a Cisco IOS-XE device:

Request: ``` GET /restconf/data/ietf-interfaces:interfaces/interface=GigabitEthernet1/statistics HTTP/1.1 Host: 192.168.1.1 Accept: application/yang-data+json ```

Response: ```json

{

"ietf-interfaces:statistics": {

"discontinuity-time": "2023-01-01T00:00:00Z",
    "in-octets": 1000000,
    "in-errors": 0,
    "out-octets": 500000,
    "out-errors": 0
  }
}

```

What is the correct way to interpret this response?

Question 14easymultiple choice
Full question →

A network engineer uses Cisco DNA Center API to retrieve the health of a device. The API call returns:

```json

{
  "response": [
    {
      "deviceId": "1234567890",
      "healthScore": 85,
      "overallHealth": "good",
      "memory": {
        "used": 4096,
        "total": 8192,
        "usage": 50
      },
      "cpu": {
        "usage": 25
      }
    }
  ]
}

```

What does the healthScore of 85 indicate?

Question 15mediummultiple choice
Read the full network assurance explanation →

An engineer configures gRPC dial-out telemetry on a Cisco IOS-XE device:

``` telemetry ietf subscription 100 receiver ip address 10.1.1.100 port 50051 protocol grpc-tcp source-address 10.1.1.1 encoding encode-kvgpb filter xpath /interfaces/interface/state/counters update-policy periodic 10000 ```

What is the purpose of the 'source-address' command?

Question 16mediummultiple choice
Study the full Python automation breakdown →

A Python script using Netmiko to configure telemetry on a Cisco IOS-XE device:

```python

from netmiko import ConnectHandler

device = { 'device_type': 'cisco_ios', 'host': '192.168.1.1', 'username': 'admin', 'password': 'cisco',

}

connection = ConnectHandler(**device) config_commands = [ 'telemetry ietf subscription 200', 'receiver ip address 10.1.1.100 port 50051 protocol grpc-tcp', 'source-address 10.1.1.1', 'encoding encode-kvgpb', 'filter xpath /interfaces/interface/state/counters', 'update-policy periodic 10000'

]

output = connection.send_config_set(config_commands)

print(output)

connection.disconnect() ```

What is the expected outcome of this script?

Question 17mediummultiple choice
Study the full Python automation breakdown →

An engineer retrieves telemetry data from a Cisco IOS-XE device using RESTCONF and receives the following response:

```json

{

"ietf-interfaces:interfaces": {

"interface": [
      {
        "name": "GigabitEthernet1",
        "type": "iana-if-type:ethernetCsmacd",
        "enabled": true,
        "ipv4": {
          "address": [
            {
              "ip": "192.168.1.1",
              "netmask": "255.255.255.0"
            }
          ]
        }
      }
    ]
  }
}

```

What is the correct way to access the IP address of the interface using Python?

Question 18easymultiple choice
Read the full Ansible explanation →

An Ansible playbook uses the cisco.ios.ios_telemetry module to configure a telemetry subscription:

```yaml --- - name: Configure telemetry subscription hosts: ios_xe gather_facts: no tasks: - name: Create telemetry subscription cisco.ios.ios_telemetry: state: present subscription_id: 300 receiver: ip: 10.1.1.100 port: 50051 protocol: grpc-tcp source_ip: 10.1.1.1 encoding: kvgpb filter: xpath: /interfaces/interface/state/counters update_policy: period: 10000 ```

What is the purpose of the 'state: present' parameter?

Question 19hardmultiple choice
Study the full Python automation breakdown →

A network engineer uses the following Python code to subscribe to telemetry data from a Cisco IOS-XE device via NETCONF using the YANG module 'Cisco-IOS-XE-mdt-oper':

```python

from ncclient import manager

m = manager.connect( host='192.168.1.1', port=830,

username='admin',

password='cisco', hostkey_verify=False )

# Create a telemetry subscription

subscription = ''' <config> <mdt-config-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-mdt-cfg"> <mdt-subscription> <subscription-id>400</subscription-id> <base> <stream>yang-push</stream> <encoding>encode-kvgpb</encoding> <period>5000</period> <xpath>/interfaces/interface/state/counters</xpath> </base> <mdt-receivers> <address>10.1.1.100</address> <port>50051</port> <protocol>grpc-tcp</protocol> </mdt-receivers> </mdt-subscription> </mdt-config-data> </config> '''

reply = m.edit_config(target='running', config=subscription)

print(reply.xml)

m.close_session() ```

What is the issue with this code?

Question 20mediummultiple choice
Read the full REST/YANG explanation →

Consider the following configuration snippet on a Cisco IOS-XE device:

telemetry ietf subscription 100 encoding encode-kvgpb filter xpath /interfaces/interface/state/counters stream yang-push update-policy periodic 500 receiver ip address 10.1.1.1 50000 protocol grpc

What is the effect of this configuration?

Question 21mediummultiple choice
Read the full REST/YANG explanation →

Examine the following telemetry configuration on a Cisco IOS-XE device:

telemetry ietf subscription 200 encoding encode-kvgpb filter xpath /interfaces/interface[name='GigabitEthernet0/0/0']/state stream yang-push update-policy on-change receiver ip address 192.168.1.100 50001 protocol grpc

Which statement is true about this configuration?

Question 22mediummultiple choice
Read the full REST/YANG explanation →

Review the following telemetry configuration snippet:

telemetry ietf subscription 300 encoding encode-kvgpb filter xpath /interfaces/interface/state/counters stream yang-push update-policy periodic 100 receiver ip address 10.1.1.1 50000 protocol grpc

What is missing or incorrect in this configuration?

Question 23mediummultiple choice
Read the full REST/YANG explanation →

Given this telemetry configuration on a Cisco IOS-XE device:

telemetry ietf subscription 400 encoding encode-kvgpb filter xpath /interfaces/interface/state stream yang-push update-policy periodic 1000 receiver ip address 10.1.1.1 50000 protocol grpc source-interface Loopback0

What is the effect of the source-interface Loopback0 command?

Question 24mediummultiple choice
Read the full REST/YANG explanation →

Examine the following telemetry configuration:

telemetry ietf subscription 500 encoding encode-kvgpb filter xpath /interfaces/interface/state/counters stream yang-push update-policy periodic 500 receiver ip address 10.1.1.1 50000 protocol grpc

A network engineer wants to add a second receiver for redundancy. Which additional configuration is correct?

Question 25mediummultiple choice
Read the full REST/YANG explanation →

Consider the following telemetry configuration on a Cisco IOS-XE device:

telemetry ietf subscription 600 encoding encode-kvgpb filter xpath /interfaces/interface/state stream yang-push update-policy on-change receiver ip address 10.1.1.1 50000 protocol grpc

What is a potential issue with this configuration?

Question 26easymultiple choice
Read the full network assurance explanation →

What is the default update interval for a Cisco IOS-XE telemetry subscription when using update-policy periodic without specifying a value?

Question 27easymultiple choice
Read the full network assurance explanation →

Which of the following is a valid transport protocol for model-driven telemetry receivers on Cisco IOS-XE?

Question 28mediummultiple choice
Read the full network assurance explanation →

What is the purpose of the 'source-interface' command under a telemetry receiver configuration?

Question 29mediumdrag order
Read the full network assurance explanation →

Drag and drop the steps of the gRPC dial-out telemetry subscription flow into the correct order, from first to last.

Question 30harddrag order
Read the full REST/YANG explanation →

Drag and drop the steps of configuring NETCONF YANG-based telemetry with on-change subscription into the correct order, from first to last.

Question 31mediumdrag order
Read the full network assurance explanation →

Drag and drop the steps of troubleshooting a model-driven telemetry subscription using CLI into the correct order, from first to last.

More Model-Driven Telemetry questions available in the full practice test.

Continue Practising →
←

Previous objective

Cisco DNA Center

All 350-401 Objectives

  • 100.Architecture15%
  • 101.Enterprise Network Design
  • 102.SD-Access Architecture
  • 103.SD-WAN Architecture
  • 104.QoS Architecture
  • 200.Virtualization10%
  • 201.Network Function Virtualization
  • 202.Virtual Machines and Hypervisors
  • 203.VRF and Path Isolation
  • 300.Infrastructure30%
  • 301.OSPF
  • 302.BGP
  • 303.EIGRP
  • 304.VLANs and Trunking
  • 305.Spanning Tree Protocol
  • 306.EtherChannel
  • 307.Wireless Infrastructure
  • 308.MPLS
  • 309.WAN Technologies
  • 310.NAT and DHCP
  • 311.IP Multicast
  • 312.QoS
  • 400.Network Assurance10%
  • 401.SNMP and Syslog
  • 402.NetFlow and Telemetry
  • 403.SPAN and RSPAN
  • 404.IP SLA
  • 500.Security20%
  • 501.AAA, RADIUS, and TACACS+
  • 502.ACLs and CoPP
  • 503.802.1X and TrustSec
  • 504.VPN Technologies
  • 505.Infrastructure Security
  • 600.Automation15%
  • 601.Python for Network Automation
  • 602.Ansible Automation
  • 603.REST APIs and Data Models
  • 604.Cisco DNA Center
  • 605.Model-Driven Telemetry