Free Cisco 300-435 Actual Exam Questions - Question 4 Discussion

Question No. 4
The automation engineer must replace device configuration using RESTCONF. How is this configured
using
the Python library Requests?
Select one option, then reveal solution.
US
DF
David F.
2026-02-19

Maybe C here too. PUT is generally used for replacing resources fully, which fits “replace device configuration” better than POST or PATCH. DELETE obviously won’t replace anything.

0
AN
Ali N.
2026-02-14

Probably C, put() is the standard for full replacement in RESTful APIs.

0
AN
Ali N.
2026-02-14

D imo, patch() is usually for partial updates, so it’s less likely here since the question says “replace.” That leaves put() as the better fit for full replacement.

0
BA
Bilal A.
2026-01-27

Probably B here, since post() is often used to create or replace resources when the API endpoint supports it. If the question doesn’t specify full overwrite, post might be valid too.

0
SH
Saad H.
2026-01-21

C imo, since put() is meant for full replacement, not just update.

0
IE
Irfan E.
2026-01-19

D. patch() is usually for partial updates, not full replacement. Since the question says "replace," put() (option C) fits better for a complete overwrite, so D can be ruled out here.

0
FU
Farhan U.
2026-01-18

Maybe C, since put() commonly updates or replaces resources in REST APIs.

0