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
In a Pipeline, the stage step_________.
- A . can be used to group a number of other steps into a logical unit for display
- B . collects a set of artifacts that can be referenced in a later Pipeline step
- C . prepares a test environment in Jenkins
- D . transfers artifacts to a staging server for testing
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.
Which are benefits of binary reuse (compiling once and reusing the built artifact across the rest of the pipeline)? Choose 3 answers
- A . guarantees the same source is tested in each environment
- B . allows the inclusion of environment configurations into the artifact
- C . enables selectively linking stubs and real classes representing an external interface
- D . ensures a single version b used throughout the pipeline
- E . allows a shorter cycle time
Which can be defined in and limited to a specific folder and its subfolders? Choose 4 answers
- A . Permissions to run jobs and Pipeline
- B . Credentials
- C . View definitions
- D . Plugins
- E . Pipeline shared libraries
What is the default directory where a build takes place?
- A . The Workspace directory.
- B . The Builds directory in the Job.
- C . The JENKINS_HOME directory.
- D . The user’s home directory.
Which of the following are true about the structure of a Declarative Pipeline? Choose 2 answers
- A . Any Pipeline DSL code that Implements complex computational tasks must be located outside any stage block.
- B . Steps are the logical segmentation of a Pipeline; they contain stages that define actual tasks.
- C . Stages are the logical segmentation of a Pipeline; they contain steps that define actual tasks.
- D . Each pipeline must have a global agent specification.
- E . All stages in a Pipeline must execute on the same type of agent.
In Jenkins, which section in a Freestyle job configuration is used to execute a Linux (shell) or Windows (batch) command?
- A . Build
- B . Build Environment
- C . Source Code Management
- D . Build Triggers
- E . Post-build Actions
One quality of an ideal build node K that it is_________.
- A . ephemeral and replaceable
- B . tailored to specific builds
- C . on-master
- D . static
Which of the following statements are TRUE about Jenkins Pipeline? Choose 2 answers
- A . A Pipeline job must contain at least three stages.
- B . It is not possible to call a Freestyle Job from within a Pipeline Job.
- C . The Pipeline syntax supports running steps in parallel on different agents.
- D . When using a Multibranch Pipeline, Jenkins can automatically create Jobs for each branch in the source code repository.
- E . Pipeline jobs survive master restarts only If the Pipeline definition script Is checked into an SCM.
Which Jenkins job status indicates that tests failed?
- A . Aborted
- B . Success
- C . Unstable
- D . Failure
- E . Not Built