Recall & Review
beginner
What is a Groovy method in Jenkins pipelines?
A Groovy method is a reusable block of code defined in a Jenkins pipeline script to perform specific tasks, helping to keep the pipeline clean and organized.
Click to reveal answer
beginner
How do you define a simple Groovy method in a Jenkins pipeline?
Use the syntax: <br>
def methodName() {<br> // code here<br>}<br>This defines a method named 'methodName' that can be called later in the pipeline.Click to reveal answer
beginner
Why use Groovy methods in Jenkins pipelines?
They help avoid repeating code, make pipelines easier to read, and allow you to organize complex tasks into smaller, manageable parts.
Click to reveal answer
beginner
How do you call a Groovy method inside a Jenkins pipeline script?
Simply write the method name followed by parentheses, like
methodName(), wherever you want to run that code.Click to reveal answer
intermediate
Can Groovy methods in Jenkins pipelines accept parameters? How?
Yes. Define parameters inside parentheses like
def greet(name) { echo "Hello, ${name}!" }. Call it with greet('Alice') to pass 'Alice' as the argument.Click to reveal answer
What keyword is used to define a method in a Jenkins pipeline Groovy script?
✗ Incorrect
In Groovy scripts for Jenkins pipelines, methods are defined using the 'def' keyword.
How do you call a Groovy method named 'buildApp' in a Jenkins pipeline?
✗ Incorrect
You call a Groovy method by writing its name followed by parentheses, like 'buildApp()'.
Why should you use Groovy methods in Jenkins pipelines?
✗ Incorrect
Groovy methods help organize code and avoid repeating the same code multiple times.
Which of the following is a correct way to define a method with a parameter in Jenkins pipeline Groovy?
✗ Incorrect
The correct syntax includes 'def' keyword, method name, parameters in parentheses, and code block.
What will happen if you call a Groovy method that is not defined in your Jenkins pipeline script?
✗ Incorrect
Calling an undefined method causes the pipeline to fail with an error.
Explain how to create and use a Groovy method in a Jenkins pipeline script.
Think about how you write a small reusable function in Groovy.
You got /4 concepts.
Describe the benefits of using Groovy methods in Jenkins pipelines.
Why do programmers use functions or methods in general?
You got /4 concepts.