WorksheetsLinux - Unit 6 Quiz
Total questions: 13
Worksheet time: 9mins
What does the git clone command do in Git?
Uploads local changes to a remote repository.
Downloads a copy of a remote Git repository to your local machine.
Switches branches in your Git repository.
Creates a new branch in your local repository.
Which Git command is used to upload your local changes to a remote repository?
git commit
git push
git pull
git add
Which Git command is used to create, list, or delete branches in your repository?
git branch
git tag
git commit
git push
What is the purpose of the .gitignore file in a Git repository?
To list branches in the repository.
To create new tags for specific commits.
To specify files and directories that should be ignored by Git.
To save changes to the local repository.
Which advanced Git feature helps facilitate code review and collaboration in team-based development workflows?
Git merge.
Git rebase.
Git pull.
Pull requests (PRs).
Which file format is known for its human-readable syntax, making it suitable for defining and organizing configurations in a clear and concise manner in Infrastructure as Code (IaC)?
XML (eXtensible Markup Language)
JSON (JavaScript Object Notation)
YAML (YAML Ain't Markup Language)
CSV (Comma-Separated Values)
Which tool adopts a human-readable YAML syntax for configuration files and is known for its agentless architecture?
Puppet
Chef
Ansible
SaltStack
Which tool employs a Ruby-based DSL for describing system configurations and follows a declarative approach to configuration management?
Ansible
Puppet
Chef
SaltStack
SaltStack distinguishes itself with powerful remote execution capabilities. What language is used for its configuration files?
YAML
JSON
Ruby
Python
What does "initiating a container" involve?
Building a container image
Launching its processes to bring it to life
Deploying instances based on existing container images
Connecting to a running container for interaction
What does "deploying a container" involve?
Halting the processes of a container
Launching container processes based on existing images
Exposing specific ports within a container
Creating and launching instances of a container based on existing container images
What is the significance of "exposing ports" in containers?
Accessing logs of container activities
Halting the processes of a container
Making specific ports within a container accessible externally
Creating and launching instances of a container
Explain what a container is.
