Which two statements about the REST API are correct? (Choose two.)

Which two statements about the REST API are correct? (Choose two.)A . The TCP session state is maintained by the server.B . The REST API application is stateless.C . The TCP session state is maintained by the clientD . The REST API application is stateful.View AnswerAnswer: B, C Explanation: REST...

March 26, 2025 No Comments READ MORE +

Which two statements are valid regarding Junos automation? (Choose two.)

Which two statements are valid regarding Junos automation? (Choose two.)A . The jsd process handles XML API calls.B . The mgd process handles JET API requests.C . The jsd process handles JET API requests.D . The mod process handles XML API calls.View AnswerAnswer: C, A Explanation: In Junos automation, several...

March 23, 2025 No Comments READ MORE +

Which DevOps "Three way" principle addresses technical debt?

Which DevOps "Three way" principle addresses technical debt?A . feedbackB . flowC . continuous experimentation and learningD . continuous experimentationView AnswerAnswer: A Explanation: In the context of the DevOps "Three Ways" principles, the feedback principle directly addresses the management of technical debt. The "Three Ways" are core principles guiding DevOps...

March 10, 2025 No Comments READ MORE +

Which two tools would you use to make REST API requests? (Choose two.)

Which two tools would you use to make REST API requests? (Choose two.)A . cURLB . NETCOfJFC . Web browserD . SSHView AnswerAnswer: AC Explanation: REST API requests can be made using various tools that support HTTP methods. Two common tools are: cURL: A command-line tool that allows you to...

March 10, 2025 No Comments READ MORE +

Which data construct is used to guarantee that element names and data values remain unique in an XML document?

Which data construct is used to guarantee that element names and data values remain unique in an XML document?A . elementB . schema definitionC . namespaceD . dictionaryView AnswerAnswer: C Explanation: In XML documents, a namespace is the data construct used to ensure that element names and data values remain...

March 5, 2025 No Comments READ MORE +

Which type of script serves this purpose?

You are asked to develop an on-box Junos script that prevents deletion of the SNMP configuration. Which type of script serves this purpose?A . commit scriptB . event scriptC . op scriptD . SNMP scriptView AnswerAnswer: A Explanation: A commit script in Junos is used to enforce policies and configuration...

February 27, 2025 No Comments READ MORE +

Which two statements about Junos automation are correct? (Choose two.)

Which two statements about Junos automation are correct? (Choose two.) A. The Junos REST API client is on-box. B. Junos automation does not allow for device provisioning throuqh the console port. C. Junos automation allows for device provisioning through the console port. D. The Junos REST API client is off-box.View...

February 18, 2025 No Comments READ MORE +

Junos supports which two APIs for on-box scripting? (Choose two.)

Junos supports which two APIs for on-box scripting? (Choose two.)A . JETB . PuppetC . XMLD . ChefView AnswerAnswer: A, C Explanation: Juniper Networks' Junos operating system supports several APIs for on-box scripting, two of which are: JET (Juniper Extension Toolkit): JET is a modern API framework that provides a...

February 8, 2025 No Comments READ MORE +

What is the output of this print command?

Given the following Python script: a = [1,2,3,4,5,6,7,8,9] print(a[0]) What is the output of this print command?A . 1B . 2C . 7D . 9View AnswerAnswer: A Explanation: In Python, lists are zero-indexed, meaning the first element of the list is at index 0. The given script is: pythona =...

February 7, 2025 No Comments READ MORE +

What is the correct Python script syntax to prompt for input?

What is the correct Python script syntax to prompt for input?A . hostIP = input("Device IP address: ")B . hostIP = input{Device IP address: }C . hostIP = input"Device IP address: "D . input("Device IP address: ") = hostIPView AnswerAnswer: A Explanation: In Python, the correct syntax to prompt the...

January 30, 2025 No Comments READ MORE +