Which of the following git commands is used to manage files in a repository? (Choose two correct answers.)
Which of the following git commands is used to manage files in a repository? (Choose two correct answers.)A . git rmB . git cpC . git mvD . git moveE . git copyView AnswerAnswer: A,C
Which of the following HTTP headers is a CORS header?
Which of the following HTTP headers is a CORS header?A . X-CORS-Access-Token:B . Location:C . Referer:D . Authorization:E . Access-Control-Allow-OriginView AnswerAnswer: E Explanation: https://enable-cors.org/server_apache.html
How can a task use the value provided for TargetEnvironment?
A declarative Jenkins pipeline contains the following excerpt: parameters { string (name: ‘TargetEnvironment’, defaultValue: ‘staging’, description: ‘Target environment’) } How can a task use the value provided for TargetEnvironment?A . {{TargetEnvironment}}B . $TargetEnvironmentC . %TargetEnvironment%D . ${params.TargetEnvironment}E . $ENV{TargetEnvironment}View AnswerAnswer: B
Which configuration option in the Ansible inventory is issued control privilege escalation of the remote user?
Which configuration option in the Ansible inventory is issued control privilege escalation of the remote user?A . priv_userB . elevateC . superD . becomeE . sudoView AnswerAnswer: D Explanation: https://docs.ansible.com/ansible/2.6/user_guide/become.html