Gitlab CI/CD

Gitlab CI/CD

Professional Development

7 Qs

quiz-placeholder

Similar activities

Lesson 3: SDLC, Bug Cycle, JIRA

Lesson 3: SDLC, Bug Cycle, JIRA

Professional Development

11 Qs

What would you do?

What would you do?

Professional Development

10 Qs

February MSV 2023

February MSV 2023

Professional Development

10 Qs

Concessions ES

Concessions ES

KG - Professional Development

9 Qs

General

General

Professional Development

10 Qs

The Different Types of Complaints

The Different Types of Complaints

Professional Development

7 Qs

dto quiz

dto quiz

KG - Professional Development

10 Qs

Quiz 22/Ago/2023

Quiz 22/Ago/2023

Professional Development

9 Qs

Gitlab CI/CD

Gitlab CI/CD

Assessment

Quiz

Other

Professional Development

Hard

Created by

Depte Mena

Used 29+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Main difference between Continuous delivery and continuous deployment, which is recommended?

Continuous Delivery: manual, Continuous deployment: automatic; Recommended: Continuous Delivery

Continuous Delivery: automatic, Continuous deployment: manual; Recommended: Continuous Delivery

Continuous Delivery: manual, Continuous deployment: automatic; Recommended: Continuous Deployment

Continuous Delivery: automatic, Continuous deployment: manual; Recommended: Continuous Deployment

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Artifacts created during pipeline can be used by the job in subsequent pipeline. Is statement True/False.

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which gitlab keyword is used to allow job to fail? (Failed job does not stop the subsequent jobs to run.)

when: always

allow-failure: true

artifacts:

- on-failure: true

when: on_failure

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to determine the order of job execution in gitlab-ci.yml?

script

artifacts

stages

tags

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output?

Step1: Initialize the value of custom variable 'VAR' as 'Hello' in gitlab ci/cd variables

Step2: Then,Initialize the variable 'VAR' as 'Hurray' under variables in gitlab-ci.yml

Step3:

Job A:

- Stage: build

- Script:

- echo $VAR

Prints 'Hello'

prints 'Hurray'

prints error

None of the above.

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

which keyword is used to limit when the jobs should be created:

only

except

both

None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Codebase is pushed to 'master' branch, above snippet is .gitlab-ci.yml file, will the above job execute?

Yes

No