Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Azure DevOps Interview Questions: From Cloud Basics to Azure Services #9

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions devops_with_azure/azure_devops_questions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Azure DevOps Interview Questions

<details>
<summary>Q1. What is cloud computing?</summary>

**Answer:** Cloud computing is a model that allows users to access computing services like storage, servers, and applications over the internet, avoiding the need for on-premise infrastructure. It offers flexible deployment options: public clouds, where resources are shared, and private clouds, dedicated to one organization. Key benefits include scalability, reduced costs, and the ability to access resources on-demand, tailored to an organization’s specific needs.
</details>

<details>
<summary>Q2. What are the different deployment models in cloud computing?</summary>

**Answer:**

- **Public Cloud**: In a public cloud, all resources are hosted on platforms like Azure, offering low cost and no need for hardware purchases or maintenance. It provides near-unlimited scalability, with resources available on demand, and high reliability due to a vast server network.

- **Private Cloud**: Resources are dedicated to one organization, either on-premises or hosted by a third party. This model offers enhanced security and control since the infrastructure is private. It's ideal for companies needing more customized control over their data.

- **Hybrid Cloud**: This model blends both public and private cloud features, allowing some components to run on-premises and others in the cloud. It provides flexibility by combining the scalability of the public cloud with the security of the private cloud.
</details>