Cisco 350-601 Practice Test - Questions Answers, Page 10

List of questions
Question 91

Due to a major version change, an engineer must perform a software upgrade on a Cisco Nexus Series switch. Which two technologies can be implemented to reduce disruptions to the network during the upgrade? (Choose two.)
MLAG
HSRP
PAgP
VDC
vPC
To reduce disruptions during a major software upgrade on a Cisco Nexus Series switch, technologies like VDC (Virtual Device Contexts) and vPC (Virtual Port Channels) can be implemented. VDC allows for the partitioning of a single physical device into multiple logical devices, which can be managed and operated independently. This means that one VDC can be upgraded while others remain operational, minimizing downtime.vPC enables the linking of two switches to create a single logical switch, providing redundancy and allowing for one switch to be upgraded while the other maintains the network operations1.
Question 92

Refer to the exhibit.
Why does the python code for Cisco NX-API print an error message?
The ''type'' is wrong in the header of the request and should be ''cli_ conf''.
NX-API does not allow configuration for features via the requests module.
The ''type'' is wrong is the body of the request and should be ''cli_ conf''.
The JSON is not a supported format for the NX-API.
'Commands that belong to different message types should not be mixed. For example, show commands are cli_show message type and are not supported in cli_conf mode.'
https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus7000/sw/programmability/guide/cisco_nexus7000_programmability_guide_8x/b-cisco-nexus7000-programmability-guide-8x_chapter_011.html
the payload 'type' value is wrong in the body of the request. For the request to be successful, it should be changes to 'cli_conf'.
For example, if we run the same request with the updated payload:
{
'ins_api': {
'version': '1.0',
'type': 'cli_conf',
'chunk': '0',
'sid': '1',
'input': 'configure terminal ;feature hsrp',
'output_format': 'json'
}
}
We get a 200 response:
{
'ins_api': {
'sid': 'eoc',
'type': 'cli_conf',
'version': '1.0',
'outputs': {
'output': [
{
'code': '200',
'msg': 'Success',
'body': {}
},
{
'code': '200',
'msg': 'Success',
'body': {}
}
]
}
}
}
CLI verification:
nxos9kv# sh run | inc hsrp
feature hsrp
Question 93

A server engineer wants to control power uses on a Cisco UCS C-series rack server down to the component level. Which two components support specific power limits? (Choose two.)
memory
graphic card
processor
network controller
storage controller
Question 94

What occurs when running the command install deactivate <filename> while a software maintenance upgrade is performed on a Cisco Nexus 9000 Series switch?
The current set of packages is committed.
The package is removed from the switch.
The package features for the line card are disabled.
The current upgrade stops.
https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus9000/sw/6-x/system_management/configuration/guide/b_Cisco_Nexus_9000_Series_NX-OS_System_Management_Configuration_Guide/sm_smu.html#task_B8B0F5BA80BE41AEA93197F560665648
Question 95

A network architect wants to propose a scalable network monitoring solution in which data is repeatedly acquired from network devices. The solution must use a push model and provide close to realtime access to operational data. Which technology must be used to meet these requirements?
streaming telemetry
logging
SNMPv3
CLI-based scripting
https://blogs.cisco.com/developer/its-time-to-move-away-from-snmp-and-cli-and-use-model-driven-telemetry
Streaming telemetry is a technology that enables scalable network monitoring by repeatedly acquiring data from network devices and sending it to configured endpoints. Streaming telemetry uses a push model, meaning that the network devices initiate the data transmission without being polled by the monitoring clients.Streaming telemetry also provides close to real-time access to operational data, allowing for more dynamic and responsive network analysis and troubleshooting12.
Question 96

A network engineer is adding a Cisco HyperFlex data platform to the Cisco intersight management portal. Which two components are required for Intersight to claim the Cisco HyperFlex data platform? (Choose two.)
device FQDN
device public IP address
device claim code
device ID
device serial number
To add a Cisco HyperFlex data platform to the Cisco Intersight management portal, two components are required for Intersight to claim the Cisco HyperFlex data platform: the device claim code and the device serial number. The device claim code is a unique identifier that is generated by the Cisco HyperFlex installer and is used to register the device with Intersight.The device serial number is the serial number of the Cisco HyperFlex controller node and is used to verify the device ownership and entitlement3.
Question 97

Refer to the exhibit.
Which command is run from the Guest Shell to set the description on the first five interfaces of the Cisco Nexus switch?
Option A
Option B
Option C
Option D
The command in Option D correctly uses a loop to iterate over the range {1...5}, which represents the first five interfaces. Thedohostcommand is used to send commands to the host Cisco Nexus switch from the Guest Shell. The syntaxinterface eth1/$xanddescription Server$xwithin the loop sets the description for each interface eth1/1 to eth1/5 to ''Server1'' to ''Server5'' respectively.
Here's the command from Option D formatted for clarity:
[guestshell@guestshell ~]$ for x in {1..5}; do
dohost 'conf t' ;
interface eth1/$x;
description Server$x;
done
This command will configure the description for each of the first five Ethernet interfaces with the respective server number as part of the description.
Question 98

A Cisco UCS user called 'Employee1' accidentally changed the boot policy of the Cisco UCS server at the Cisco UCS Manager root level. This change impacted all service profiles and their storage connectivity was lost. The system administrator wants to prevent this issue from recurring in the future. The new security policy mandates that access must be restricted up to the organization level and prevent other users from modifying root policies. Which action must be taken to meet these requirements?
Question 99

An engineer is running an ACI fabric, has VMM integration with VMware vCenter, and wants to enable microsegmentation based on vCenter VM attributes. Which statement about microsegmentation is true?
Question 100

A network architect considers a Cisco HyperFlex design solution for a company. The proposed solution is for a virtual environment that is not performance-sensitive, but the solution must have high storage capacity and a low cost. Which Cisco HyperFlex storage configuration should be used?
Question