Winter Sale Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: v4s65

CJE Exam Dumps - Certified Jenkins Engineer (CJE)

Go to page:
Question # 9

Your supervisor has asked you to explain to the company's development team how using Jenkins will implement continuous integration. You want to make sure the developers understand what that means to them. Which of the following is the most succinct explanation?

A.

The changes the team makes will be released to production at any time.

B.

The software development team will increase the frequency at which code changes are committed to the build, test, and deployment cycles.

C.

Software changes will now be added to an automated pipeline.

D.

Build time objectives will be targeted to take less than 60 minutes.

Full Access
Question # 10

Which practices optimize performance on large systems? Choose 2 answers

A.

Run all builds on agents and never on the master itself.

B.

Use the maximum number of executors at all times and avoid using labels.

C.

Avoid modifying Java parameters that control heap size and garbage collection.

D.

Use plugins as much as possible.

E.

Allocate specific masters for different build types and teams.

Full Access
Question # 11

What's the Jenkinsfile?

A.

None of these

B.

It's only used for freestyle projects

C.

It contains the definition for a pipeline

D.

It contains the basic configuration for Jenkins

Full Access
Question # 12

Which of the following is true about resuming a Declarative Pipeline?

A.

Declarative Pipelines cab be restarted after a Jenkins failure but not after a transient outage (such as a network failure or disk space exhaustion).

B.

Declarative Pipelines can be resumed only after a transient outage (such as a network failure or disk space exhaustion).

C.

All Declarative Pipelines are restartable by default, with the same inputs (commit to build, parameters, etc) as the original run. Any data that was built In the original run Is available only If the preserveStashes() option Is specified In the Jenkinsfile

D.

Declarative Pipelines that use Docker containers can not be resumed because the docker APIs that Jenkins calls to create the container are not serialized

E.

A Declarative Pipeline can be restarted only If the preserveStashes() option Is set In the pipeline.

Full Access
Question # 13

In a JUnit report, if we set the "Health report amplification factor" to 2 and there's a 1% failure, what's the health score?

A.

98%

B.

80%

C.

60%

D.

75%

Full Access
Question # 14

Jenkins, along with several other automation platforms, provides developers and operators with tools that allow them to automate the deployment of environments with preconfigured source code, including the CI pipeline. What is this called?

A.

Continuous Integration

B.

Continuous Deployment

C.

Continuous Delivery

D.

Infrastructure as Code

Full Access
Question # 15

You are a DevOps engineer in charge of your team's Jenkins server. Your project is on major version "1". You want to ensure that this variable, MAJOR_VERSION, is available throughout your pipeline that is defined in a Jenkinsfile. Which of the following ways could you accomplish that using the "environment" directive?

A.

environment(MAJOR_VERSION = 1)

B.

environment { steps { sh " export MAJOR_VERSION=1" }}

C.

environment { MAJOR_VERSION = 1 }

D.

environment [MAJOR_VERSION=1]

Full Access
Question # 16

Why Is the performance of a Jenkins master Improved by using a distributed builds architecture?

A.

Because executors cannot be allocated on the master.

B.

Because executors offloaded onto build nodes are not performant.

C.

Because it prevents the CPU being overloaded during parallel polls.

D.

Because it prevents builds from overloading a master's CPU/memory.

E.

Because builds cannot be run In parallel on a master.

Full Access
Go to page: