Recall & Review
beginner
What is the purpose of steps within stages in a Jenkins pipeline?
Steps are the individual tasks or commands that run inside a stage. They define what actions Jenkins performs during that stage.
Click to reveal answer
beginner
How do you define multiple steps inside a single stage in a Jenkins declarative pipeline?
You list the steps inside a
steps block using commands like sh, echo, or script.Click to reveal answer
beginner
Example: What does this step do?
sh 'echo Hello World'
This step runs a shell command that prints 'Hello World' to the console output.
Click to reveal answer
intermediate
Can a stage have zero steps in Jenkins pipeline?
No, a stage must have at least one step to perform an action. Otherwise, the stage does nothing and may cause errors.
Click to reveal answer
beginner
How do steps inside stages help organize a Jenkins pipeline?
Steps inside stages break down the pipeline into clear, manageable actions. Each stage groups related steps, making the pipeline easier to read and maintain.
Click to reveal answer
In Jenkins declarative pipeline, where do you put the commands to run inside a stage?
✗ Incorrect
Commands to run in a stage go inside the steps block.
Which of these is a valid step inside a Jenkins stage?
✗ Incorrect
The 'sh' command runs a shell command and is a valid step.
What happens if a stage has no steps defined?
✗ Incorrect
A stage without steps usually causes an error because Jenkins expects actions to run.
How do steps inside stages improve a Jenkins pipeline?
✗ Incorrect
Steps group tasks inside stages, making the pipeline easier to understand.
Which keyword is used to run a shell command as a step in Jenkins pipeline?
✗ Incorrect
The 'sh' keyword runs shell commands in Jenkins pipeline steps.
Explain how steps are used inside stages in a Jenkins pipeline and why they are important.
Think about what Jenkins does inside each stage.
You got /4 concepts.
Describe what happens if you define a stage without any steps in Jenkins pipeline.
Consider Jenkins expectations for stages.
You got /3 concepts.