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…
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
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)- A3% (1)
- B6% (2)
- D92% (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
Community Discussion
No community discussion yet for this question.
