701-100 Exam - LPIC-OT DevOps Tools Engineer

certleader.com

Our pass rate is high to 98.9% and the similarity percentage between our and real exam is 90% based on our seven-year educating experience. Do you want achievements in the Microsoft 701-100 exam in just one try? I am currently studying for the . Latest , Try Microsoft 701-100 Brain Dumps First.

Free demo questions for Microsoft 701-100 Exam Dumps Below:

NEW QUESTION 1
Which elements exist on the highest level of the definition of every Kubernetes Objects? (Specify the name of one of the elements, without any values.)

    Answer:

    Explanation: pod

    NEW QUESTION 2
    Which of the following commands lists the nodes in a Docker Swam cluster?

    • A. docker-swarm listnodes
    • B. docker engine ls
    • C. docker node ls
    • D. docker machine ls
    • E. docker swarm nodes

    Answer: C

    Explanation: Reference https://docs.docker.com/engine/swarm/manage-nodes/

    NEW QUESTION 3
    Which configuration option in the Ansible inventory is issued control privilege escalation of the remote user?

    • A. priv_user
    • B. elevate
    • C. super
    • D. become
    • E. sudo

    Answer: D

    Explanation: Reference https://docs.ansible.com/ansible/2.6/user_guide/become.html

    NEW QUESTION 4
    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

    Answer: A

    NEW QUESTION 5
    What implications does container virtualization have for DevOps? (Choose two answers.)

    • A. Containers decouple the packaging of an application from its infrastructure.
    • B. Containers require developers to have detailed knowledge of their IT infrastructure.
    • C. Containers let developers test their software under production conditions.
    • D. Containers complicate the deployment of software and require early deployment tests.
    • E. Containers require application specific adjustment to the container platform.

    Answer: AC

    Explanation: Explanation Reference
    http://anandmanisankar.com/posts/container-docker-PaaS-microservices/

    NEW QUESTION 6
    Which of the following kinds of data are suitable as artifacts in a continuous delivery pipeline? (Choose three correct answers.)

    • A. Executable applications such as .exe files or .jar packages.
    • B. Copies of the contents of source code repositories.
    • C. Build configuration files such as Makefiles or Maven configurations.
    • D. Compiled packages to be installed by a Linux package manager.
    • E. Docker container images which contain an applicatio

    Answer: BCD

    NEW QUESTION 7
    Which of the following functions are provided by the Ansible apt module? (Choose two correct answers.)

    • A. Update an installed package to the latest version.
    • B. Update the list of available packages from configured repositories.
    • C. Re-compile an installed package from the source code.
    • D. Add the URL of a new repository to the package manager configuration.
    • E. Install a dpkg based Linux distribution on an empty target system.

    Answer: BE

    Explanation: Reference https://docs.ansible.com/ansible/latest/modules/apt_module.html

    NEW QUESTION 8
    Which of the following tasks can Logstash fulfill without using other components of the Elastic Stack? (Choose three.)

    • A. Receive log data from remote systems.
    • B. Store log data persistently.
    • C. Aggregate log data over a period of time.
    • D. Process log data to extract information.
    • E. Forward log data to other service

    Answer: CDE

    NEW QUESTION 9
    Which docker-machine sub command outputs a list of commands that set environment variables which are required to make docker work with a Docker host managed by docker-machine? (Specify only the sub command without any path or parameters.)

      Answer:

      Explanation: env

      NEW QUESTION 10
      If a Dockerfile references the container’s base image without a specific version tag, which tag of that image is used to create the container?

      • A. latest
      • B. default
      • C. current
      • D. nightly
      • E. lts

      Answer: A

      Explanation: Reference https://docs.docker.com/engine/reference/commandline/build/

      NEW QUESTION 11
      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 orartifacts.
      • 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.

      Answer: B

      Explanation: Reference https://www.packer.io/docs/commands/validate.html

      NEW QUESTION 12
      How is a Docker container image retrieved from a Docker registry?

      • A. Docker retrieves a ZIP archive which is extracted into the container’s root file system.
      • B. Multiple stacked images are retrieved and layered on top of each other.
      • C. A flat hard disk image is downloaded once per container and mounted as the root file system.
      • D. The registry merger all components of the image into one file which is shipped to Docker.
      • E. The container is built from an ISO file along with a configuration for an unattended installatio

      Answer: B

      Explanation: Reference https://www.ibm.com/developerworks/library/mw-1608-tost-trs/index.html

      NEW QUESTION 13
      Which of the following commands lists the cookbooks available on a Chef server?

      • A. kitchen cookbook list
      • B. chef-client cookbook list
      • C. chef-server cookbook list
      • D. chef-solo cookbook list
      • E. knife cookbook list

      Answer: C

      NEW QUESTION 14
      Which of the statements below are true about the volume created by the following command? (Choose two correct answers.)
      docker run –v /data –ti debian

      • A. The new /data volume contains a copy of the complete container’s base image.
      • B. The volume containing the container’s rootfile system is retained until the /data volume is deleted.
      • C. The /data volume is discarded when the container terminates.
      • D. The /data volume can be attached to another Docker container.
      • E. If the command is run a second time, another volume for /data is create

      Answer: DE

      NEW QUESTION 15
      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

      Answer: B

      Explanation: Reference https://git-scm.com/docs/git-revert

      NEW QUESTION 16
      Which of the following conditionals exist in an Ansible playbook? (Choose three correct answers.)

      • A. with_nodes
      • B. with_playbook
      • C. with_sequence
      • D. with_items
      • E. with_nested

      Answer: CDE

      Explanation: Reference https://docs.ansible.com/ansible/2.4/playbooks_loops.html

      NEW QUESTION 17
      An Ansible variable file contains the following content:
      myapp: option1: one
      Which of the following strings can be used to reference the defined variable? (Choose two correct answers).

      • A. myapp(option1);
      • B. option1@myapp
      • C. myapp[‘option1’]
      • D. myapp.option1
      • E. myapp{{option1}}

      Answer: AE

      Thanks for reading the newest 701-100 exam dumps! We recommend you to try the PREMIUM Exambible 701-100 dumps in VCE and PDF here: https://www.exambible.com/701-100-exam/ (60 Q&As Dumps)