- Which of the following best describes Blue-Green deployment?
View Answer
Correct answer: A — Running two environments, switching traffic between them
- Canary deployment strategy involves:
View Answer
Correct answer: A — Gradually rolling out changes to a subset of users
- Rolling deployment strategy means:
View Answer
Correct answer: A — Updating servers gradually one by one
- Shadow deployment strategy involves:
View Answer
Correct answer: A — Sending traffic to a new version without exposing it to users
- Which of the following is true about GitHub Actions matrix builds?
View Answer
Correct answer: A — They run jobs across multiple environments
- GitLab CI/CD caching is used to:
View Answer
Correct answer: A — Speed up pipeline execution by reusing dependencies
- Jenkins supports pipeline scripting using:
View Answer
Correct answer: A — Groovy DSL
- Which of the following is true about CI/CD secrets management?
View Answer
Correct answer: A — Secrets are stored securely and injected into pipelines
- GitHub Actions supports triggers like:
View Answer
Correct answer: A — push, pull_request, schedule
- Which of the following is true about Jenkins agents?
View Answer
Correct answer: A — They execute pipeline jobs
- What will be printed?
1 print("Eduinq Advanced CI/CD Test") View Answer
Correct answer: A — Eduinq Advanced CI/CD Test
- GitLab CI/CD supports artifacts to:
View Answer
Correct answer: A — Pass build outputs between jobs
- Which of the following is true about Jenkins distributed builds?
View Answer
Correct answer: A — They use master-agent architecture
- GitHub Actions supports environment variables defined in:
View Answer
Correct answer: A — Workflow YAML files
- Which of the following is true about CI/CD rollback strategies?
View Answer
Correct answer: A — They revert deployments when failures occur
- Jenkins pipelines can be triggered by:
View Answer
Correct answer: A — SCM changes, scheduled jobs, manual triggers
- GitLab CI/CD supports parallel jobs to:
View Answer
Correct answer: A — Run multiple jobs concurrently
- Which of the following is true about CI/CD monitoring?
View Answer
Correct answer: A — It tracks pipeline health and failures
- GitHub Actions supports reusable workflows to:
View Answer
Correct answer: A — Share workflow logic across repositories
- Which of the following is true about advanced CI/CD deployment strategies?
View Answer
Correct answer: A — They include Blue-Green, Canary, Rolling, Shadow
- Which of the following is true about CI/CD pipeline optimization?
View Answer
Correct answer: A — Using caching and parallel jobs
- GitHub Actions supports reusable workflows defined in:
View Answer
Correct answer: A — Separate YAML files
- Which of the following is true about GitLab CI/CD stages?
View Answer
Correct answer: A — They define build, test, deploy phases
- Jenkins pipelines can be written in:
View Answer
Correct answer: A — Declarative or scripted syntax
- Which of the following is true about CI/CD artifact retention?
View Answer
Correct answer: A — Artifacts can be stored for a defined duration
- GitHub Actions supports concurrency to:
View Answer
Correct answer: A — Prevent duplicate workflow runs
- Which of the following is true about CI/CD deployment approvals?
View Answer
Correct answer: A — Manual approvals can be required before production deployment
- GitLab CI/CD supports environments to:
View Answer
Correct answer: A — Define deployment targets like staging and production
- Which of the following is true about Jenkins shared libraries?
View Answer
Correct answer: A — They allow reuse of pipeline code across projects
- GitHub Actions supports secrets stored in:
View Answer
Correct answer: A — Repository or organization settings
- What will be printed?
1 System.out.println("Eduinq Advanced Deployment Strategy"); View Answer
Correct answer: A — Eduinq Advanced Deployment Strategy
- Which of the following is true about CI/CD pipeline triggers?
View Answer
Correct answer: A — They can be based on code commits, schedules, or manual actions
- GitLab CI/CD supports job dependencies using:
View Answer
Correct answer: A — needs keyword
- Which of the following is true about Jenkins declarative pipelines?
View Answer
Correct answer: A — They use a structured syntax for readability
- GitHub Actions supports workflow templates to:
View Answer
Correct answer: A — Provide reusable starter configurations
- Which of the following is true about CI/CD deployment strategies?
View Answer
Correct answer: A — Canary, Blue-Green, Rolling, Shadow
- Jenkins supports pipeline visualization using:
View Answer
Correct answer: A — Blue Ocean plugin
- Which of the following is true about GitLab CI/CD variables?
View Answer
Correct answer: A — They allow dynamic configuration of jobs
- GitHub Actions supports job outputs to:
View Answer
Correct answer: A — Pass data between jobs
- Which of the following is true about CI/CD pipeline security?
View Answer
Correct answer: A — Secrets must be encrypted and access controlled
- Which of the following is true about Jenkins scripted pipelines?
View Answer
Correct answer: A — They provide flexibility with Groovy scripting
- GitLab CI/CD supports job artifacts to:
View Answer
Correct answer: A — Share files between jobs
- Which of the following is true about CI/CD pipeline scalability?
View Answer
Correct answer: A — Pipelines can run on multiple agents in parallel
- GitHub Actions supports conditional job execution using:
View Answer
Correct answer: A — if keyword
- Which of the following is true about Jenkins pipeline libraries?
View Answer
Correct answer: A — They allow sharing of reusable functions across pipelines
- GitLab CI/CD supports manual jobs to:
View Answer
Correct answer: A — Allow human intervention in pipelines
- Which of the following is true about CI/CD pipeline failures?
View Answer
Correct answer: A — They provide feedback to developers for quick fixes
- GitHub Actions supports workflow dispatch to:
View Answer
Correct answer: A — Trigger workflows manually
- Which of the following is true about Jenkins pipeline parameters?
View Answer
Correct answer: A — They allow customization of pipeline runs
- Which of the following best describes advanced CI/CD practices overall?
View Answer
Correct answer: A — Optimizing pipelines with caching, parallelism, secrets, and deployment strategies