Labour Day - Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: dpm65

CJE Certified Jenkins Engineer (CJE) Questions and Answers

Questions 4

A unit test_________.

Options:

A.

tests an Individual unit a component

B.

verifies cross-functionalities

C.

verifies that the complete software matches the specifications it was written to fulfill

D.

is written when an Integration or multi-environment bog is fixed

Buy Now
Questions 5

In a "standalone" configuration, when masters manage the build environment and also execute builds with their own resources, which of the following Is true?

Options:

A.

Build times decrease.

B.

User interface becomes slower as resources on the master run out.

C.

The builds share SCM checkouts

D.

Masters are more highly available.

Buy Now
Questions 6

How can you downgrade a plugin?

Options:

A.

Overwrite the hpi file on the file system

B.

Click the "Downgrade to" button in the Plugin Manager

C.

All of these

D.

Use the advanced install option in the Plugin Manager to install an older hpi file than the plugin already installed.

Buy Now
Questions 7

Which isn't a common Jenkins build tool?

Options:

A.

Ant

B.

Excel

C.

Docker

D.

Gradle

Buy Now
Questions 8

How do you set a freestyle project to be parameterized?

Options:

A.

From "Project Configuration," select "This project is parameterized."

B.

Freestyle projects don't accept parameters

C.

Choose the project from the parameterized list in the "Configure System" section.

D.

All freestyle projects are parameterized

Buy Now
Questions 9

How do you configure notifications in a Jenkinsfile?

Options:

A.

emailext

B.

notice

C.

email

D.

alert

Buy Now
Questions 10

You have now been given charge over an existing Jenkins system install that was previously started by a colleague who is gone on a business trip. He left it in the install wizard phase. Unfortunately, your colleague did not note the initialAdminPassword. Where on the systemwould this be located?

Options:

A.

/var/lib/jenkins/secrets/InitialAdminPassword

B.

/var/lib/jenkins/adminPassword

C.

/var/lib/jenkins/workspace/secrets/InitialAdminPassword

D.

/home/jenkins/secrets/InitialAdminPassword

Buy Now
Questions 11

How do you setup the GitHub Plugin Git hook from a Project Configuration Perspective?

Options:

A.

Set the "Build Periodically" trigger, but you don't have to specify an interval

B.

None of these

C.

Set the "GitHub hook trigger for GITScm polling" trigger

D.

Set the "Poll scm" trigger, but you don't have to specify an interval

Buy Now
Questions 12

You're a DevOps engineer in charge of configuring Jenkins for your team's CI/CD pipeline. You're utilizing the Jenkins pipeline and the Jenkinsfile. You want to define a stage for your build that utilizes the locally installed Ant and build.xml in the root of your project repository. Which is the correct syntax?

Options:

A.

step('build') { sh 'ant -f build.xml -v' } }

B.

stage('build') { sh 'ant -f build.xml -v' }

C.

stage('build') { steps { sh 'ant -f build-tools/build.xml -v' } }

D.

stage('build') { steps { sh 'ant -f build.xml -v' } }

Buy Now
Questions 13

What happens to all associated configuration metadata (on jobs, builds, etc) after a plugin is uninstalled?

Options:

A.

Nothing happens. The data remains on the persisted form of the configuration until the next save of that Rem (job, etc.).

B.

It is deleted on the next restart of Jenkins.

C.

It Is deleted on the next configuration reload.

D.

It Is deleted Immediately.

E.

The data is backed up and then deleted from the live configuration.

Buy Now
Questions 14

How can you configure a Declarative Pipeline to record the fingerprint of an artifact?

Options:

A.

CaII the fingerprintArtifact() step immediately after the archiveArtifacts( ) step.

B.

Enable the Declarative Pipeline 'enableFingerprints' 'option' .

C.

Set the Fingerprint Artifacts global configuration option.

D.

Set the "fingerprint: true" argument for the archiveArtifactsQ step.

E.

No action is required; Declarative Pipelines automatically record a fingerprint for each artifact.

Buy Now
Questions 15

What's the Jenkinsfile?

Options:

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

Buy Now
Questions 16

Which menu option do you select to add a pipeline or other project?

Options:

A.

Credentials

B.

My Views

C.

New Item

D.

Manage Jenkins

Buy Now
Questions 17

Which is a valid agent declaration?

Options:

A.

agent any

B.

agent { label 'Slave 1'}

C.

agent none

D.

All of these

Buy Now
Questions 18

When you upgrade a plugin and find an issue in the new version, how ran you move hade to the previously installed version? Choose 2 answers

Options:

A.

Use the pluginManager.downgrade method in the script console.

B.

Select the version you want to use in the global configuration section for this plugin.

C.

Select one of the previous versions in the Plugin Manager.

D.

Manually download and install the previously installed version.

E.

Use the "downgradeplugin" command In the Jenkins CI I

F.

Use the button on the Plugin Manager that allows a downgrade to the previously installed version.

Buy Now
Questions 19

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

Options:

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.

Buy Now
Questions 20

You are tasked by management to explain continuous deployment. Your explanation will be used in the company's annual report, so you need to ensure you understand it properly. Which is the best definition?

Options:

A.

Building in 60 minutes or less.

B.

A software development practice where contributors are integrating their work very frequently to production in an automated fashion.

C.

A software development discipline where software is built so that it can be released to production at any time.

D.

A software development discipline where software is built so that it can be released to production at any time.

Buy Now
Questions 21

You can use Jenkins' database to manage users.

Options:

A.

True

B.

False

Buy Now
Questions 22

Which arc true when installing new plugins? Choose 2 answers

Options:

A.

If you check the "Enable rollbacks when upgrading" box, future updates to an the plugin can easily be rolled back when necessary.

B.

The previous public release of a plugin is installed for reliability instead of Installing the most recent public release.

C.

Most plugins can be Installed without stopping and starting Jenkins.

D.

You must install all required and optional dependencies before Installing the plugin with the plugin manager.

E.

If you are running Jenkins under an HTTP proxy, you must configure HTTP proxy access for the plugin manager before Installing or updating plugins.

Buy Now
Questions 23

Which practices optimize performance on large systems? Choose 2 answers

Options:

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.

Buy Now
Questions 24

Which of the following practices are recommended for a Declarative Pipeline? Choose 3 answers

Options:

A.

Use the pipeline DSL to implement intricate networking and computational tasks that your Pipeline needs to do.

B.

Simplify the test/debug process and improve performance of your pipeline by defining separate steps for each Important task performed by the pipeline.

C.

Encapsulate common Jenkins logic within shared libraries when leveraging Declarative Pipelines.

D.

Call scripts written In Shell, Batch, Groovy, or Python to implement any complex logic required for your pipeline; call these scripts as steps in your pipeline.

E.

Use took such as Maven, Gradle, NPM, Ant, and Make to define most of the build work; cad these executables as steps In your pipeline.

Buy Now
Questions 25

Which are commonly referenced as key points of CI?

Choose 3 answers

Options:

A.

Automated deployment to the production environment.

B.

Collaboration among Dev, QA and Ops.

C.

Automated tests after each commit

D.

Automated builds after each commit.

E.

Frequent commits to source code repository.

Buy Now
Questions 26

What type of views can be configured in Jenkins?

Options:

A.

email

B.

notice

C.

emailext

D.

alert

Buy Now
Questions 27

What are the main advantages of using webhooks/post commit hooks from your Source Code Management system to trigger your Jenkins project rather than using SCM polling? Choose 2 answers A A. Builds are started on a defined a on schedule.

B. Avoid unnecessary overhead from polling.

C. Builds are started immediately after changes are committed.

D. The entire repository Is scanned so no commits are missed.

Options:

Buy Now
Exam Code: CJE
Exam Name: Certified Jenkins Engineer (CJE)
Last Update: Apr 17, 2024
Questions: 186

PDF + Testing Engine

$56  $159.99

Testing Engine

$42  $119.99
buy now CJE testing engine

PDF (Q&A)

$35  $99.99
buy now CJE pdf
dumpsmate guaranteed to pass
24/7 Customer Support

DumpsMate's team of experts is always available to respond your queries on exam preparation. Get professional answers on any topic of the certification syllabus. Our experts will thoroughly satisfy you.

Site Secure

mcafee secure

TESTED 24 Apr 2024