What happens when a GitHub Action exceeds its time limit?
AWorkflow stops immediately
BWorkflow continues until completion
CAction retries automatically
DAction sends warning notification
Explanation
The workflow stops immediately upon exceeding the time limit, unlike others which don't accurately describe this behavior.
Q76
Which Azure service is primarily used for container orchestration?
AAzure Kubernetes Service
BAzure Functions
CAzure Blob Storage
DAzure Virtual Machines
Explanation
Azure Kubernetes Service is designed for managing containers, while the others serve different purposes.
Q77
A company needs to deploy code automatically to multiple Azure environments based on branch changes. What should they use?
AAzure DevOps Services
BGitHub Actions
CAzure Automation
DAzure Logic Apps
Explanation
GitHub Actions allows automation of deployment tied to git changes, while the others serve mainly different purposes.
Q78
You are configuring GitHub Actions for a repository. What happens when a job fails?
ASubsequent jobs always run
BEntire workflow stops by default
COnly the failed job restarts
DError logs are not generated
Explanation
By default, when a job fails, the workflow stops executing subsequent jobs to prevent further errors.
Q79
Which Azure service provides a managed Kubernetes environment?
AAzure Kubernetes Service
BAzure VM
CAzure App Service
DAzure Functions
Explanation
Azure Kubernetes Service is specifically designed for managing Kubernetes clusters, unlike the other options which serve different purposes.
Q80
A company needs to deploy a web application with zero downtime. What should they use?
AAzure Functions
BBlue/Green Deployment
CAzure Batch
DRecreate Deployment
Explanation
Blue/Green Deployment allows for seamless transitions with zero downtime, while the other options do not suit this requirement.