Implementing Cisco Enterprise Network Core Technologies (350-401 ENCOR) Exam Materials-Question 254 Discussion
Comment Image Comment Image Comment Image

An engineer must create a script to append and modify device entries in a JSON-formatted file. The script must work as follows: Until interrupted from the keyboard, the script reads in the hostname of a device, its management IP address, operating system type, and CLI remote access protocol. After being interrupted, the script displays the entered entries and adds them to the JSON-formatted file, replacing existing entries whose hostname matches. The contents of the JSON-formatted file are as follows: { "examplerouter": { "ip": "203.0.113.1", "os": "ios-xe", "protocol": "ssh" }, ... } Drag and drop the statements onto the blanks within the code to complete the script. Not all options are used. (Invalid number of answers)

  • A.
  • B.
  • C.
  • D.
Correct Answer:

Brave-Dump Clients Votes


Comments



Anonymous User 2026-09-06 02:33:39

Selected Answers: No answers selected


Line 4 is: File = open
File.open() is wrong!


Anonymous User 2026-09-07 07:01:16

Selected Answers: No answers selected


Line 1 -> import json
Line 2 -> while True:
Line 3 -> except
Line 4 -> File = open
Line 5 -> File.close()