ExamGecko
Home Home / Cisco / 350-901

Cisco 350-901 Practice Test - Questions Answers, Page 14

Question list
Search
Search

List of questions

Search

Related questions











Refer to the exhibit.

Which key value pair from the ios_ntp Ansible module creates an NTP server peer?

A.

state: present

A.

state: present

Answers
B.

state: True

B.

state: True

Answers
C.

config: present

C.

config: present

Answers
D.

config: True

D.

config: True

Answers
Suggested answer: A

Explanation:

ios_ntp : Manages core NTP configuration state : Manage the state of the resource Choices : present | absent Example:

# Set new NTP server and source interface

- ios_ntp: server: 10.0.255.10 source_int: Loopback0 logging: false state: present

https://docs.ansible.com/ansible/latest/modules/ios_ntp_module.html

Refer to the exhibit.

The YAML represented is using the ios_vrf module. As part of the Ansible playbook workflow, what is the result when this task is run?

A.

VRFs not defined in the host_vars file are removed from the device.

A.

VRFs not defined in the host_vars file are removed from the device.

Answers
B.

VRFs not defined in the host_vars file are added to the device, and any other VRFs on the device remain.

B.

VRFs not defined in the host_vars file are added to the device, and any other VRFs on the device remain.

Answers
C.

VRFs defined in the host_vars file are removed from the device.

C.

VRFs defined in the host_vars file are removed from the device.

Answers
D.

VRFs are added to the device from the host_vars file, and any other VRFs on the device are removed.

D.

VRFs are added to the device from the host_vars file, and any other VRFs on the device are removed.

Answers
Suggested answer: D

Refer to the exhibit.

As part of the Ansible playbook workflow, several new interfaces are being configured using the netconf_config module. The task references the interface variables that are unique per device.

In which directory is the YAML file with these variables found?

A.

host_vars directory

A.

host_vars directory

Answers
B.

home directory

B.

home directory

Answers
C.

group_vars directory

C.

group_vars directory

Answers
D.

current working directory

D.

current working directory

Answers
Suggested answer: A

Explanation:

https://docs.ansible.com/ansible/latest/user_guide/intro_inventory.html#organizing-host-andgroup-variables

A developer needs to configure an environment to orchestrate and configure. Which two tools should be used for each task? (Choose two.)

A.

Puppet for orchestration

A.

Puppet for orchestration

Answers
B.

Terraform for orchestration

B.

Terraform for orchestration

Answers
C.

Terraform for configuration

C.

Terraform for configuration

Answers
D.

Ansible for orchestration

D.

Ansible for orchestration

Answers
E.

Ansible for configuration

E.

Ansible for configuration

Answers
Suggested answer: B, E

Application sometimes store configuration as constants in the code, which is a violation of strict separation of configuration from code. Where should application configuration be stored?

A.

environment variables

A.

environment variables

Answers
B.

YAML files

B.

YAML files

Answers
C.

Python libraries

C.

Python libraries

Answers
D.

Dockerfiles

D.

Dockerfiles

Answers
E.

INI files

E.

INI files

Answers
Suggested answer: A

Refer to the exhibit.

What is the output of this IOS-XE configuration program?

A.

interface operational status in IPv6 addresses

A.

interface operational status in IPv6 addresses

Answers
B.

interface administrative status in IPv4 addresses

B.

interface administrative status in IPv4 addresses

Answers
C.

interface operational status in IPv4 addresses

C.

interface operational status in IPv4 addresses

Answers
D.

interface administrative status in IPv6 addresses

D.

interface administrative status in IPv6 addresses

Answers
Suggested answer: B



Refer to the exhibit above and click on the IETF Routing tab in the top left corner to help with this question. A developer is trying to update the routing instance by adding a new route to the routes list using the URL in the exhibit. What action must be taken to fix the error being received?

A.

Fix the body being sent to update the routes list.

A.

Fix the body being sent to update the routes list.

Answers
B.

Update the authorization credentials.

B.

Update the authorization credentials.

Answers
C.

Change the url to ''/ietf-routing:routing/routing-instance=default''.

C.

Change the url to ''/ietf-routing:routing/routing-instance=default''.

Answers
D.

Change the URL to ''/ietf-routing:routing-instance/default''.

D.

Change the URL to ''/ietf-routing:routing-instance/default''.

Answers
E.

Change the HTTP Method being used to make the change

E.

Change the HTTP Method being used to make the change

Answers
Suggested answer: C


Click on the GET Resource button above to view resources that will help with this question. An engineer is managing a DC with 6000 Cisco UCS servers installed and running. The engineer has been asked to identify all resources where the model is in the UCSB family and the available memory is less than or equal to 5 GB. Which REST API call accomplishes this task?

A.

GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=not(Model eq 'UCSC') and AvailableMemory le 5000

A.

GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=not(Model eq 'UCSC') and AvailableMemory le 5000

Answers
B.

GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=Model eq 'UCSB' and AvailableMemory lt 5000

B.

GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=Model eq 'UCSB' and AvailableMemory lt 5000

Answers
C.

GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=contains(Model, UCSB') and AvailableMemory lt 5000

C.

GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=contains(Model, UCSB') and AvailableMemory lt 5000

Answers
D.

GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=contains(Model, UCSB') and AvailableMemory le 5000

D.

GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=contains(Model, UCSB') and AvailableMemory le 5000

Answers
Suggested answer: D

Explanation:

https://intersight.com/apidocs/introduction/query/#filter-query-option-filtering-the-resources

Refer to the exhibit.

Which RESTCONF verb changes the GigabitEthernet2 interface from 192.168.100.1/24 to 10.10.10.1/24

A.

POST

A.

POST

Answers
B.

PATCH

B.

PATCH

Answers
C.

GET

C.

GET

Answers
D.

HEAD

D.

HEAD

Answers
Suggested answer: A

The Meraki API URL https://api.meraki.com/api/v0/networks/123456789/ssids/2 has been stored inthe environment variable meraki_url and the API key has been stored in meraki_api_key. Whichsnippet presents the API call to configure, secure and enable an SSID using the Meraki API?

A.


A.


Answers
B.


B.


Answers
C.


C.


Answers
D.


D.


Answers
Suggested answer: C
Total 364 questions
Go to page: of 37