Complete the code to declare a string parameter named 'ENV'.
parameters {
string(name: '[1]', defaultValue: 'dev', description: 'Environment')
}The parameter name must be exactly 'ENV' to match the requirement.
Complete the code to declare a boolean parameter named 'DEBUG_MODE'.
parameters {
booleanParam(name: '[1]', defaultValue: false, description: 'Enable debug mode')
}The parameter name must be 'DEBUG_MODE' as specified.
Fix the error in the parameters block to declare a choice parameter named 'DEPLOY_ENV'.
parameters {
choice(name: '[1]', choices: ['dev', 'staging', 'prod'], description: 'Deployment environment')
}The parameter name must be 'DEPLOY_ENV' exactly to avoid errors.
Fill both blanks to declare a string parameter named 'VERSION' with default '1.0' and description 'App version'.
parameters {
string(name: '[1]', defaultValue: '[2]', description: 'App version')
}The parameter name must be 'VERSION' and default value '1.0' as specified.
Fill all three blanks to declare a choice parameter named 'REGION' with choices 'us-east', 'us-west', 'eu-central' and description 'Deployment region'.
parameters {
choice(name: '[1]', choices: [2], description: '[3]')
}The parameter name is 'REGION', choices are the list of regions, and description matches exactly.