CloudBees CJE Certified Jenkins Engineer (CJE) Online Training
CloudBees CJE Online Training
The questions for CJE were last updated at Nov 22,2024.
- Exam Code: CJE
- Exam Name: Certified Jenkins Engineer (CJE)
- Certification Provider: CloudBees
- Latest update: Nov 22,2024
When you want to validate that your software produces the desired behavior for end users, you need to use
- A . smoke tests
- B . acceptance tests
- C . functional tests
- D . non-regression tests
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
- 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.
Which are Source Code Management tools? Choose 3 answers
- A . Java
- B . Perforce
- C . Subversion
- D . Git
- E . Maven
A freestyle job is set up to "Enable concurrent builds if necessary" and configured to run on a single node.
How can you ensure that multiple concurrent runs share the same workspace?
- A . Pass the argument -Dhuason.model .Run. lockworkspace=false in the Jenkins master Invocation.
- B . Check "Do not lock workspace" In the Advanced Project Options of the project.
- C . Multiple concurrent runs can never share the same workspace.
- D . Define a "Custom workspace" path for the job.
What does a flashing build icon in the Build History indicate? Choose 3 answers
- A . A groovy script needs to be approved.
- B . A build is waiting for Input.
- C . The build is waiting for an executor to be available.
- D . An agent is being spawned.
Which job type Is always available In Jenkins without additional plugins?
- A . Ant project
- B . Make project
- C . Grade project
- D . Pipeline project
- E . Freestyle project
What is the preferred method for a Jenkins administrator to notify nil Jenkins users about upcoming system maintenance?
- A . Add text to the "System Message" field on the "System Configuration" page to populate a banner displayed across the top of the master’s home page.
- B . On the "System Configuration" page, choose the "Maintenance Alerts" option from the "Alerts" dropdown menu and populate the box with a message to be added to all build logs.
- C . Populate the "Email Notifications" section of the "System Configuration" page with a message to be sent as email to all registered Jenkins users.
- D . On the master’s dashboard, dick "add description" or "edit description" to populate a banner displayed across the top of the master’s home page.
Which is the expected workflow for "lest-Driven Development"?
- A . Validate with the CI system, write the new functional code, and then verify that the test passes.
- B . Write a new test, validate with the a system, and then write the new functional code.
- C . Write a new falling unit test, write the new functional code to fix the test, verify that the test passes, and then refactor the code.
- D . Write a new failing unit test, write the new functional code to fix the test, and then verify that the test passes.
You want to execute a Job passing one parameter via the Jenkins RFST API. The correct syntax for this is http: / /server/Job/ myjob_________.
- A . /build?Parameter =Value
- B . /buiWWithParameters?Parameter=Value
- C . /buildWithParameters
- D . /build?Parameters=Value
Which keyword is used to group related parts of a Declarative Pipeline?
- A . collect
- B . step
- C . stage
- D . steps
- E . group