0
0
Jenkinsdevops~20 mins

Keeping pipelines fast in Jenkins - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Pipeline Speed Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Why use parallel stages in Jenkins pipelines?

In Jenkins pipelines, what is the main benefit of using parallel stages?

AThey automatically retry failed tasks without manual intervention.
BThey save pipeline logs to external storage for auditing.
CThey ensure tasks run one after another to avoid conflicts.
DThey allow multiple tasks to run at the same time, reducing total pipeline duration.
Attempts:
2 left
💡 Hint

Think about how running tasks simultaneously affects total time.

💻 Command Output
intermediate
2:00remaining
Output of Jenkins pipeline with caching

Given this Jenkins pipeline snippet, what will be the output of the sh step on the second run?

Jenkins
pipeline {
  agent any
  stages {
    stage('Cache Example') {
      steps {
        cache(path: 'node_modules', key: 'npm-cache') {
          sh 'npm install'
        }
        sh 'ls node_modules'
      }
    }
  }
}
AFails because cache step is not a valid Jenkins pipeline step.
BLists the contents of node_modules folder quickly because dependencies are cached.
CRuns npm install every time without caching, so node_modules is empty initially.
DThrows syntax error due to missing curly braces.
Attempts:
2 left
💡 Hint

Check if cache is a built-in Jenkins pipeline step.

🔀 Workflow
advanced
2:00remaining
Optimizing Jenkins pipeline with agent allocation

You want to speed up your Jenkins pipeline by running tests simultaneously. Which pipeline snippet correctly achieves this?

A
stage('Tests') {
  steps {
    sh 'run-tests.sh'
    sh 'run-tests.sh'
  }
}
B
parallel {
  stage('Test1') {
    agent { label 'linux' }
    steps { sh 'run-tests.sh' }
  }
  stage('Test2') {
    agent { label 'windows' }
    steps { sh 'run-tests.sh' }
  }
}
C
stage('Tests') {
  agent any
  steps {
    parallel(
      test1: { sh 'run-tests.sh' },
      test2: { sh 'run-tests.sh' }
    )
  }
}
D
parallel(
  { stage('Test1') { steps { sh 'run-tests.sh' } } },
  { stage('Test2') { steps { sh 'run-tests.sh' } } }
)
Attempts:
2 left
💡 Hint

Look for the correct syntax to run parallel tasks inside a stage.

Troubleshoot
advanced
2:00remaining
Why does Jenkins pipeline run slowly despite parallel stages?

A Jenkins pipeline uses parallel stages, but the total runtime is still very long. What is the most likely cause?

AThe pipeline script has syntax errors preventing parallel execution.
BThe parallel stages share the same agent, causing them to run sequentially.
CThe Jenkins master is offline, so stages cannot run.
DThe pipeline uses too many agents, causing network congestion.
Attempts:
2 left
💡 Hint

Consider how agent allocation affects parallel execution.

Best Practice
expert
3:00remaining
Best practice for caching dependencies in Jenkins pipelines

What is the best practice to cache dependencies like node_modules in Jenkins pipelines to keep builds fast and reliable?

AUse a dedicated caching plugin or external cache server and restore cache before build steps.
BManually copy <code>node_modules</code> folder between builds using shell commands.
CRun <code>npm install</code> every time without caching to avoid stale dependencies.
DStore <code>node_modules</code> inside the workspace without any caching mechanism.
Attempts:
2 left
💡 Hint

Think about automated, reliable ways to reuse dependencies across builds.