Pre-Winter Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

701-100 PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

701-100 PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: DevOps Tools Engineer
  • Last Update: Oct 16, 2024
  • Questions and Answers: 60
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

701-100 Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

701-100 Practice Exam Questions with Answers DevOps Tools Engineer Certification

Question # 6

What is the Puppet equivalent to an Ansible Playbook called?

A.

A Puppet Catalog

B.

A Puppet Playbook

C.

A Puppet Factsheet

D.

A Puppet Declaration

E.

A Puppet Manifest

Full Access
Question # 7

Which of the following statements are true about Jenkins? (Choose two correct answers.)

A.

Jenkins is specific to Java based applications.

B.

Jenkins can delegate tasks to slave nodes.

C.

Jenkins only works on local files and cannot use SCM repositories.

D.

Jenkins’ functionality is determined by plugins.

E.

Jenkins includes a series of integrated testing suites.

Full Access
Question # 8

Which Ansible keyword is used in a playbook to store the result (i.e. return code) of a task in a variable?

A.

register

B.

return

C.

output

D.

result

E.

set_fact

Full Access
Question # 9

Consider the following Kubernetes Deployment:

701-100 question answer

With the ReplicaSet:

701-100 question answer

And the Pods:

701-100 question answer

What happens if one of the Pods is terminated with the command kubect1 pod delete?

A.

The remaining Pods are stopped and the Deployment switches to the state Failed.

B.

The number of replicas in the ReplicaSet is changed to 4.

C.

The ReplicaSet immediately starts a new replacement Pod.

D.

The remaining Pods are stopped and a new ReplicaSet is started.

E.

The Deployment switches to the state Degraded.

Full Access
Question # 10

The file index.php, which is being maintained in a git repository, was changed locally and contains an error. If the error has not been committed to the repository yet, which of the following git commands reverts the local copy of index.php to the latest committed version in the current branch?

A.

git lastver – index.php

B.

git revert – index.php

C.

git checkout – index.php

D.

git clean – index.php

E.

git repair – index.php

Full Access
Question # 11

What is tested by unit tests?

A.

The syntactical correctness of the source code of a software component.

B.

The formal validity of a service’s external REST API.

C.

The integration of multiple component of the same software.

D.

The correctness of a specific function of a software component.

E.

The throughput, load capacity and latency of a service.

Full Access
Question # 12

An online shop needs to store information about clients and orders. A list of fixed properties for clients and orders exists. The data storage should enforce specific data types on these properties and ensure that each order is associated with an existing client. Which of the following cloud services is capable of fulfilling these requirements?

A.

An in-memory database like memcached.

B.

An object store like OpenStack Swift.

C.

A messaging service like OpenStack Zaqar.

D.

A NoSQL database like MongoDB.

E.

A relational database like MariaDB.

Full Access
Question # 13

Which of the following properties apply to a content delivery network? (Choose three correct answers.)

A.

CDNs require all elements of a web site to be served by the same CDN.

B.

CDNs can stream large media files such as movies or music to clients.

C.

CDNs are present in multiple locations to serve content close to clients.

D.

CDNs serve huge numbers of clients with high bandwidth and low latency.

E.

CDNs forward all requests to a backend server and never store content locally.

Full Access
Question # 14

What does the command packer validate template.json do?

A.

The command verifies that the latest build of the template can be run without downloading additional images or artifacts.

B.

The command verifies that the file template.json is a syntactically correct and complete Packer template.

C.

The command verifies that all existing artifacts generated by template.json have their original checksums.

D.

The command verifies that all source images referenced in template.json are available and have valid cryptographic signatures.

E.

The command verifies that images generated previously by template.json still use the most recent source images.

Full Access
Question # 15

Which of the following HTTP methods are used by REST? (Choose three correct answers.)

A.

CREATE

B.

REPLACE

C.

PUT

D.

DELETE

E.

GET

Full Access
Question # 16

Which of the log messages below matches the following Logstash grok filter?

grok {

match => [“message”, “%{SYSLOGBASE} new node %{IPORHOST:node}” ]

}

A.

Jun 30 00:36:49 headnode: new node 198.51.100.103 at clustermanager:12353

B.

Jun 30 00:36:49 headnode clustermanager[12353]: new node 198.51.100.103

C.

Jun 30 00:36:49 headnode clustermanager[198.51.100.103]: new node

D.

%{SYSLOG-FROM:headnode clustermanager[12353]} new node 198.51.100.103

E.

clustermanager[12353]: Jun 30 00:36:49 headnode new node 198.51.100.103

Full Access
Question # 17

The following command is issued on two docker nodes:

docker network create --driver bridge isolated_nw

Afterwards, one container is started at each node with the parameter --network=isolated_nw. It turns out that the containers can not interact with each other. What must be done in order to allow the containers to interact with each other? (Choose two correct answers.)

A.

Use a host network instead of a bridged network.

B.

Add the option --inter-container to the docker network create command.

C.

Start the containers on the same node.

D.

Change the --network parameter of docker create to --network=isolated_nw,nofence.

E.

Use an overlay network instead of a bridged network.

Full Access
Question # 18

Which of the following mechanisms are used for service discovery in a container environment? (Choose two correct answers.)

A.

The container platform offers a command like docker service discover which should be run within a container.

B.

The container platform sets environment variables containing service information within the containers.

C.

The container platform lists localhost ports assigned to containers in each container’s /etc/services file.

D.

The container platform mounts the sockets for all available services into the container’s file systems.

E.

The container platforms maintains DNS records which point to containers offering a specific service.

Full Access