Describe Azure architecture and services: Describe Azure compute and networking services Flashcards

1
Q

What are Azure Virtual Machines (VMs)?

A

Virtualized servers that provide Infrastructure as a Service (IaaS), offering complete control over the OS, software, and hosting configurations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are common use cases for Azure VMs?

A

Testing and development.
Running applications in the cloud.
Extending datacenters to the cloud.
Disaster recovery.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are Virtual Machine Scale Sets (VMSS)?

A

VMSS allows automated scaling and centralized management of identical, load-balanced VMs, ideal for large-scale services.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an Availability Set in Azure?

A

A grouping of VMs to ensure fault tolerance by distributing VMs across fault domains (power/network failure zones) and update domains (maintenance zones).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are containers in Azure?

A

Lightweight virtualization environments that run multiple apps on a single host without managing the OS, designed for agility and dynamic scaling.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do containers differ from VMs?

A

VMs virtualize hardware and include an OS, while containers virtualize the OS, bundling only the app and its dependencies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Azure Container Instances (ACI)?

A

A PaaS offering to run single-container workloads without managing VMs or infrastructure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Azure Kubernetes Service (AKS)?

A

A container orchestration service for deploying, managing, and scaling containerized applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are Azure Functions?

A

Event-driven, serverless compute options that run code in response to triggers without maintaining infrastructure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the benefits of Azure Functions?

A

No infrastructure management.
Automatic scaling based on demand.
Pay only for the execution time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the difference between stateless and stateful Azure Functions?

A

Stateless functions restart on each event; stateful (Durable Functions) retain context between executions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is an Azure Virtual Network (VNet)?

A

A logically isolated network in Azure that securely connects Azure resources and extends on-premises networks to the cloud.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are subnets in Azure?

A

Subdivisions of a VNet’s IP address range to organize and isolate resources for better scalability and security.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are public and private endpoints in Azure networking?

A

Public endpoint: Accessible over the internet with a public IP.
Private endpoint: Uses a private IP within a VNet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is virtual network peering?

A

A connection between two VNets that allows private communication without routing traffic over the public internet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a VPN Gateway in Azure?

A

A virtual network gateway used to send encrypted traffic between Azure VNets, on-premises networks, or devices.

17
Q

What is Azure ExpressRoute?

A

A private, high-speed connection between on-premises infrastructure and Azure, bypassing the public internet for better security and reliability.

18
Q

What is the difference between policy-based and route-based VPN gateways?

A

Policy-based: Statically defines encrypted traffic.
Route-based: Uses IP routing to dynamically select traffic for encryption.

19
Q

What is Azure DNS?

A

A hosting service for DNS domains that provides name resolution using Microsoft Azure infrastructure.

20
Q

What are alias records in Azure DNS?

A

Records that point to Azure resources and update automatically when the resource’s IP changes.

21
Q

Does Azure DNS allow you to purchase domain names?

A

No, you must purchase domains through App Service domains or a third-party registrar and host them in Azure DNS.

22
Q

What is Azure App Service?

A

An HTTP-based service for hosting web apps, APIs, and mobile backends with automatic scaling and high availability.

23
Q

What app types can be hosted on Azure App Service?

A

Web apps.
API apps.
WebJobs for background tasks.
Mobile apps.

24
Q

What programming languages are supported by Azure App Service?

A

.NET, Java, Ruby, Node.js, PHP, and Python, on Windows and Linux platforms.

25
Q

What is an Azure Application Gateway?

A

A Layer 7 load balancer with features like SSL termination and Web Application Firewall (WAF).

26
Q

What is the Azure Gateway Load Balancer?

A

A service for advanced traffic management integrated with third-party network virtual appliances.

27
Q

When should you use containers instead of VMs?

A

Use containers for lightweight, portable, and scalable application workloads; use VMs when full control of the OS is needed.

28
Q

When is ExpressRoute preferred over a VPN gateway?

A

When higher bandwidth, lower latency, and better security are required for private connectivity.

29
Q

How do Azure Functions differ from App Service?

A

Azure Functions focus on serverless, event-driven execution, while App Service is for hosting web apps and APIs.