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
Which of the following container names could have been assigned automatically by Docker?
A. docker-c00001
B. 2.0.17.172
C. container
D. c0023817
E. clever_ritchie
What happens when the following command is executed twice in succession? doker run -tid -v data:/data debian bash
A. The second command invocation fails with an error stating that the volumen data is already associated with a running container.
B. The container resulting from the second invocation can only read the content of /data/ and can not change it.
C. The original content of the contents of the data is available in both containers, although changes stay local within each container.
D. Both containers share the container of the data volume, have full permissions to alter its content and mutually see their repective changes.
E. Each container is equipped with its own independent data volumen, available at /data/ in the respective container.
What is the difference between the commands git diff and git diff --cached? (Choose TWO correct answers)
A. git diff --cached shows changes of all commits that were not pushed to origin yet
B. git diff shows changes that were nor addes to the next commit
C. git diff and git diff --cached always lead to the same result if a repository does not have at least one remote repository
D. git diff --cached shows changes that will be included in the next commit
E. git diff --cached shows changes included in the last successful commit of the current branch
In a continuous delivery pipeline, which of the following stages exist? (Choose THREE correct answers)
A. Deploy
B. Decommission
C. Test
D. Code
E. Build
After creating a new file within a directory which to a Git repository, which commands have to be used in order to make Git manage the new file and upload it to the already existing remote origin? (Choose THREE correct answers) A. git init
B. git push
C. git commit
D. git add
E. git remote
Which of the following forms of software is used by Cloud Foundry to deploy an application?
A. An executable file, such as a binary program, script or application archive, which run son the platform's standard runtime enviromment.
B. A Cloud Foundry Object file (.cfo) which has to be created from the application's object code using the cf1 linker.
C. A virtual machine image which contains an operating system, the application and all required dependencies.
D. A TGZ archive containing the source code used by Cloud Foundry to build and install the application.
E. The URL to a Git repository containing the source code used by Cloud Foundry to Build and install the application.
What is the default provider of Vagrant?
A. virtualbox
B. docker
C. vmware_workstation
D. lxc
E. hyperv
Which of the following scenarios describes SSL offloading?
A. Requests which arrive in plain text via HHTP are redirected to HTTPS URLs to enforce encryption.
B. To use HTTPS for multiple hosts in the same domain, a wildcard certificate is use don all nodes hosting the services.
C. Requests which arrive encrypted via HTTPS are answered with redirects to HTTP URLs to improve performance.
D. Incoming HTTPS connections are received by a load balancer which handles the encryption and passes decrypted requests on backend servers.
E. The main content of a website is delivered using HTTPS, assets such as images or scripts are delivered using HTTP.
Which git command restores changes that were saved using git stash save?
A. git stash merge
B. git stash revert
C. git stash pop
D. git stash restore
E. git stash commit