Q&A (Grade A+)
Prepare for your certification with this comprehensive CJE Benchmark Exam V1 &
V2 study guide, featuring over 400 real exam questions and detailed, verified answers.
This guide provides in-depth coverage of high-yield topics including correctional law,
facility security protocols, inmate management, and emergency response procedures.
Fully updated for the 2026 testing cycle, these materials are designed to bridge
knowledge gaps and help you secure an A+ grade on your proctored assessment.
. A nurse is caring for a client with a nasogastric (NG) tube connected to low
intermittent suction. The client reports nausea and the nurse notes no drainage in
the canister. What is the priority action?
A. Increase the suction level to high.
B. Irrigate the tube with normal saline to check for patency.
C. Notify the healthcare provider immediately.
D. Remove the tube and reinsert it.
Answer: B. Irrigate the tube with normal saline to check for patency.
Rationale: Nausea and lack of drainage often indicate an obstruction. Checking patency
is the first logical step before escalation.
2. Which Jenkins job type is specifically designed to handle a Git repository with
multiple branches, each containing its own Jenkinsfile?
A. Freestyle project.
B. Multi-configuration project.
C. Multibranch Pipeline.
D. Organization Folder.
Answer: C. Multibranch Pipeline.
Rationale: Multibranch Pipelines automatically discover, manage, and execute jobs for
multiple branches in a single repository.
,3. A client presents with a potassium level of 6.2 mEq/L. Which EKG change is
most likely associated with this finding?
A. Presence of U-waves.
B. Peaked T-waves.
C. ST-segment depression.
D. Prolonged PR interval.
Answer: B. Peaked T-waves.
Rationale: Hyperkalemia causes tall, peaked T-waves, which can precede lethal
arrhythmias.
4. What is the primary purpose of "Build Discarder" in a Jenkins job
configuration?
A. To prevent a job from running if the previous one failed.
B. To delete the workspace after every build.
C. To limit the number of old build records and artifacts to save disk space.
D. To automatically stop builds that exceed a time limit.
Answer: C. To limit the number of old build records and artifacts to save disk space.
Rationale: Without a discarder, the JENKINS_HOME directory will eventually consume
all available disk space.
5. A nurse is preparing to administer a medication to a client. The client states, "I
have never seen this pill before; it looks different." What is the nurse's first
action?
A. Assure the client that the medication is correct and provide it.
B. Re-verify the medication order and compare it to the medication provided.
C. Document that the client refused the medication.
D. Call the pharmacy to ask why the pill looks different.
Answer: B. Re-verify the medication order and compare it to the medication provided.
Rationale: Patient concern is a major "red flag" for potential medication errors. The
nurse must stop and verify.
,6. In a Jenkins Declarative Pipeline, which directive is used to specify that a stage
should only run if the branch is 'production'?
A. if (branch == 'production')
B. when { branch 'production' }
C. only { 'production' }
D. condition { 'production' }
Answer: B. when { branch 'production' }
Rationale: The when directive provides a structured way to add conditional logic to
stages.
7. A client with a head injury develops a heart rate of 48 bpm, a blood pressure of
180/60 mmHg, and irregular respirations. This is known as:
A. Virchow's Triad.
B. Cushing's Triad.
C. Beck's Triad.
D. Whipple's Triad.
Answer: B. Cushing's Triad.
Rationale: These are late signs of increased intracranial pressure and impending brain
herniation.
8. What is the "Remoting" protocol in Jenkins?
A. A protocol for developers to chat.
B. The communication layer that allows the controller and agents to talk to each other.
C. A security plugin for MFA.
D. A tool for remote desktop access to the server.
Answer: B. The communication layer that allows the controller and agents to talk to
each other.
Rationale: Jenkins remoting handles the TCP/IP or SSH communication between the
brain (controller) and the workers (agents).
, 9. A nurse is assessing a client for a Deep Vein Thrombosis (DVT). Which finding
is a hallmark sign?
A. Bilateral leg cramps.
B. Unilateral calf swelling, warmth, and redness.
C. Pale, cool extremities with weak pulses.
D. Decreased sensation in the toes.
Answer: B. Unilateral calf swelling, warmth, and redness.
Rationale: DVT is typically unilateral and characterized by localized inflammatory
symptoms.
10. How can you define "Global Tool Configuration" in Jenkins?
A. Within each individual job's config page.
B. In the config.xml file manually.
C. In the "Manage Jenkins" section of the dashboard.
D. By installing a separate plugin for each tool.
Answer: C. In the "Manage Jenkins" section of the dashboard.
Rationale: This menu allows you to point Jenkins to the installations of Git, Maven, or
JDKs.
11. A nurse hears high-pitched, musical sounds primarily on expiration while
auscultating a client's lungs. This sound is:
A. Crackles.
B. Wheezes.
C. Stridor.
D. Rhonchi.
Answer: B. Wheezes.
Rationale: Wheezing indicates narrowed airways, common in asthma and COPD.
12. What does the agent { label 'linux' } directive do in a Jenkinsfile?
A. It names the build 'linux'.