nerdexam
Cisco

200-901 · Question #599

Refer to the exhibit. An engineer wants to create a Bash script to automate a workflow that is related to a machine learning-based application. The engineer wants to use the application as a…

The correct answer is D. Install a software package. The Bash script shown in the exhibit performs the following actions: Updates the list of available packages using brew update. Installs Docker using brew install docker. Upgrades pip and installs tensorflow and pytorch using pip install. Pulls the latest TensorFlow Docker image…

Infrastructure and Automation

Question

Refer to the exhibit. An engineer wants to create a Bash script to automate a workflow that is related to a machine learning-based application. The engineer wants to use the application as a container and use an image from the open-source public repository. What is accomplished by the script?

Exhibit

200-901 question #599 exhibit

Options

  • ACreate a new software package
  • BInstall and remove files.
  • CUpdate an existing software package.
  • DInstall a software package.

How the community answered

(36 responses)
  • A
    3% (1)
  • B
    6% (2)
  • D
    92% (33)

Explanation

The Bash script shown in the exhibit performs the following actions: Updates the list of available packages using brew update. Installs Docker using brew install docker. Upgrades pip and installs tensorflow and pytorch using pip install. Pulls the latest TensorFlow Docker image using docker pull tensorflow/tensorflow:latest. This script is designed to install the necessary software packages (Docker, TensorFlow, PyTorch) required for a machine learning-based application. It does not create or remove any software packages but installs them.

Topics

#Bash scripting#Container deployment#Workflow automation#Software installation

Community Discussion

No community discussion yet for this question.

Full 200-901 Practice