
Microsoft Azure Fabric Interview Questions and Answers [SCENARIO-BASED ]
Last updated on 17th Nov 2021, Blog, Interview Questions
We have assembled the most commonly asked Microsoft Azure Fabric Interview Questions and Answers will assist you to prepare for the Microsoft Azure Fabric viva questions and answers that an interviewer might ask you during your interview. There are a lot of opportunities from many reputed companies in the world. According to research, Microsoft Azure Fabric has a market share of about 3.25%. So, You still have opportunities to move ahead in your career in the Microsoft Azure Fabric certification guide. ACTE offers advanced Microsoft Azure Fabric Interview Questions that help you in cracking your interview & acquiring your dream career as a Microsoft Azure Fabric Developer. This complete guide of Microsoft Azure Fabric interview questions will encourage you to crack your Job interview easily.
1. Define Azure Service Fabric?
Ans:
Service Fabric is termed as a stage for distributed systems that eases the work of deploying, packaging, and managing reliable and scalable microservices. It also handles noteworthy problems related to the development of cloud applications.
2. Define Service Fabric Cluster?
Ans:
Service Fabric Cluster can be described as a shared pool of machines. These clusters can have thousands of machines and can expand their areas globally.
3. Describe the importance of application instances in Azure Service Fabric?
Ans:
Application instances in Azure Service Fabric can be run as a separate process even though they are on the same Fabric Service node. One can have as many application instances of any type as they want in a cluster. Each application instance will have a specific name in a cluster and independently managed and versioned from the rest application instances of the same or different type. Moreover, resources and security isolation can be defined by them.
4. Define cluster in Azure Fabric Service?
Ans:
Cluster can be described as a collection of virtual/physical machines that are connected by a network. On these machines only, application instances are getting deployed.
5. Define Service type and service instance in Azure Service Fabric?
Ans:
A service type is a coding unit or a configuration that runs independently. | The service instance can be defined as code which is instantiated for each service type. |
An application type can have one or more service types. For example, Queue Service | Every service instance is associated with a specific application instance and will have a unique name |
6. Define Application type in Azure Service Fabric?
Ans:
The application type is a collection of one or more service types or we can describe them as a collection of microservices.
7. How do the Nodes in Service Fabric behave in case of OS updates?
Ans:
As of now, nodes in Azure Service Fabric don’t receive OS updates automatically. Azure doesn’t support automatic OS updates in nodes of Service Fabric.
8. How Make requests to the microservices?
Ans:
formation to determine its EXTERNAL-IP address:
- kubectl get service/system-service
9. How to test your microservice in Azure?
Ans:
- [system-EXTERNAL-IP] and [inventory-EXTERNAL-IP].
- maven failsafe:integration-test -System.ip=[system-EXTERNAL-IP] -Dinventory.ip=[inventory-EXTERNAL-IP]
To test your microservices, use the Maven Failsafe:integration-test, replacing
10. What is a Developing platform for Microsoft Azure?
Ans:

11. Is Azure Service Fabric dead?
Ans:
Service Fabric is definitely not dying. … Most of the Azure services in one way or another run on top of Service Fabric. This includes Cosmos DB, Event Hubs, Service Bus, SQL Server, Azure Functions just to name a few you definitely know. Even some parts of Kubernetes’ Azure offering (AKS) run on top of Service Fabric.
12. Where does Azure Service Fabric Resource Provider store customer data
Ans:
Azure Service Fabric Resource Provider doesn’t move or store customer data out of the region it is deployed in.
13. How can you stop a VM using PowerShell?
Ans:
- Stop-AzureRmVM -ResourceGroupName myResourceGroupVM -Name “myVM” -Force
14. Azure Service Fabric used by Microsoft
Ans:
Microsoft has been using Azure Service Fabric in production for years for its own internal evolution for some of the products, from on-premises to cloud and from monolithic to microservice-based applications. Azure Service Fabric has powered the services including Azure DocumentDB, Azure SQL Database, Skype for business, Intune and Cortana. They have released the same technology they have been using for themselves as a service in Azure.
15. Why do we use Service Fabric?
Ans:
Using Service Fabric allows your developers to focus on building features that add business value to your application. Service Fabric understands the available infrastructure and the resource needs of applications, enabling automatic scale, rolling upgrades and self-healing from faults.
16. What is Docker in Azure?
Ans:
Docker is a popular container management and imaging platform that allows you to quickly work with containers on Linux and Windows.
17. How can you retrieve the state of a particular VM?
Ans:
- Get-AzureRmVM `
- -ResourceGroupName myResourceGroup `
- -Name myVM `
- -Status | Select @{n=”Status”; e={$_.Statuses[1].Code}}
18. Describe different types of MicroServices.
Ans:
Stateless Microservices – they don’t continue to keep an inconsistent state outside of any request and its response from the service. For example, Azure Cloud Services worker roles, web proxies, etc. | They continue to keep an inconsistent state beyond the request and its response from the service. For example, Shopping carts, queues, etc. |
19. Explain MicroService.
Ans:
MicroService applications are formed of scalable, compact, stand-alone, and customer-focused services, which converse with each other using standard protocols and well-defined interfaces.
20. What is a physical machine?
Ans:

21. Define application package in Azure Service Fabric
Ans:
Application packages are composed of service code packages and configuration files of a particular application. For example, an email application package is a combination of a front-end service package, queue service package, and database service package.
22. Define Service instance in Azure Service Fabric.
Ans:
The service instance can be defined as code which is instantiated for each service type. Every service instance is associated with a specific application instance and will have a unique name.
23. Define Service type in Azure Service Fabric.
Ans:
A service type is a coding unit or a configuration that runs independently. An application type can have one or more service types. For example, Queue Service
24. Does a cluster have any minimum size limit? If yes, what and why?
Ans:
Yes. Azure supports a minimum of 5 nodes for the production environment for a Service Cluster. For dev/test environments, Azure supports three nodes of the cluster. This minimum node requirement exists as Azure runs a collection of Stateful Services. These services are directly dependent on consistency. And this strong consistency is directly dependent on the ability of any service to obtain a quorum for an update to the state of them. Quorum amounts to the majority of replicas for a given service.
25. What is the difference between Microservices and API?
Ans:
An API is a contract that provides guidance for a consumer to use the underlying service. | A microservice is an architectural design that separates portions of a (usually monolithic) application into small, self-containing services. |
26. Is it possible to turn off the cluster during weekends/night for saving money?
Ans:
No, it is not at all a feasible option. If we turn off the cluster during weekends/nights when we restart them afterward, almost all the nodes will obtain a brand-new host and in turn, makes the system unrecoverable.
27. Define node in Azure Fabric Service
Ans:
node in a cluster is an addressable unit. It has unique IDs and placement properties. The cluster can be formed as different nodes.
28. What is the difference between Kubernetes and service fabric?
Ans:
Azure Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable microservices. | On the other hand, Kubernetes is detailed as “Manage a cluster of Linux containers as a single system to accelerate Dev and simplify Ops”. |
29. Explain the advantages of the container over virtual machines.
Ans:
Below are the advantages of the container over virtual machines:
Smart: Use a single storage space and layer versions to increase efficiency
Fast: Start faster as no need to boot an operating system
Portability: Application image can be ported to run on the cloud, virtual machines, premises or physical devices
Resource Governance: Resources can be limited consumed by the host.
30. What is a Container?
Ans:
The container is an individual component that can be run independently and as an isolated instance to gain the benefits of virtualization which an OS gives. It provides a varying environment for the application to run with different types of isolation.
31. Define azure service fabric microsoft architecture?
Ans:

32. Define horizontal scaling.
Ans:
Horizontal scaling can be termed as scaling by increasing machines in the pool of resources.
33. Brief about Programming models available in Azure Service Fabric.
Ans:
An API to develop stateful and stateless services using StatelessService and StatefulService .NET classes and save state in .NET collections like dictionary and queue. | An API to build stateless and stateful objects using the virtual actor programming model that is suitable for applications with different independent units of state and compute. |
34. Define vertical scaling.
Ans:
Vertical scaling can be termed as scaling by increasing more power like CPU or RAM to a machine.
35. Which two metrics affect resource governance that is supported in Service Fabric?
Ans:
Two metrics affects resource governance, supported in Service Fabric:
- CPU: metric name – servicefabric:/_CpuCores
- Memory: metric name – servicefabric:/_MemoryInMB
These two metrics map total cluster capacity and how much load a node can bear.
36.What is an azure defender?
Ans:
Azure Defender is a built-in tool that provides threat protection for workloads running in Azure, on premises, and in other clouds. … Azure Security Center continues to provide cloud security posture management (Secure Score) as well as threat protection via the integration of Azure Defender.
37. How many services are there in Azure?
Ans:
Azure has over 6,000 flexible offerings, and it utilizes the data capacity offered by Microsoft for Software, Platform, and Infrastructure as a Service (SaaS, PaaS, and IaaS).
38. What is the difference between a library and a list?
Ans:
A library is an interface that enables the management and storage of a document created in Word, Excel, or PowerPoint. | A list, on the other hand, is the representation of an item in a tabular format (with columns and rows). It can be attached with documents |
39. Explain the benefits of Traffic Manager.
Ans:
- Optimized performance
- No downtime during the update or maintenance process
- Easily configurable on the Windows Azure portal
Azure Traffic Manager has the following benefits:
40. Difference between service fabric and cloud service?
Ans:

41. Why should you use Azure CDN?
Ans:
Azure CDN reduces the bandwidth and load time. It also helps speed up the responsiveness.
42. What is container duration in Azure?
Ans:
Container group duration is calculated from the time that we start to pull your first container’s image (for a new deployment) or your container group is restarted (if already deployed), until the container group is stopped. You can allocate up to 4 vCPU to each container group you deploy.
43. When should you use a static IP address in Azure?
Ans:
In Azure, a static IP address is used when the address connected to the device is not to be changed.
44. What is Conditional Access in Azure?
Ans:
Conditional Access is used by Azure AD as a tool to make decisions, bring signals together, and impose organizational policies. Through Conditional Access policies, one can implement the right access controls whenever required to keep the organization secure and stay out of the users’ way when not needed.
45. What is SQL Azure database?
Ans:
SQL Azure database is just an approach to get associated with cloud services where you can store your database into the cloud. Microsoft Azure is the most ideal approach to utilize PaaS where you can have different databases on a similar account. Microsoft SQL Azure has a similar component of SQL Server, i.e., high accessibility, versatility, and security in the core. Microsoft Azure SQL database has an element; it makes backups of each active database automatically. Consistently a backup is taken and geo-repeated to empower the 1-hour recuperation point objective (RPO) for Geo-Restore.
46. What is a role instance in Azure?
Ans:
Role instance is a virtual machine where application code is run using running role configurations. Multiple instances of a role are also possible according to the definition in cloud service configuration files.
47. What is Windows Azure Portal?
Ans:
To run an application, a designer gets to the Windows Azure Portal through his/her web program by logging in with a Windows Live ID. The user at that point chooses whether to create a host account for running applications, a storage account for storing data, or both.
Once the designer has a host account, he/she can utilize a Windows Azure Portal to submit applications to Windows Azure.
48. What do you comprehend about Hybrid Cloud?
Ans:
A hybrid cloud is a blend of internal and external cloud services, a mix of a private cloud joined with the utilization of public cloud services. This kind of cloud is most appropriate when you need to keep the classified information in your vicinity (private cloud) and consume alternate services from a public cloud.
49. What is a storage key?
Ans:
Storage keys or access keys are utilized as a validation mode for accessing the storage services account to control data based on our prerequisites. In Windows Azure, we have an alternative to give a primary access key and a secondary access key, despite the fact that we will utilize a solitary access key to confirm our application to the storage. The primary reason to give the secondary access key is to avoid downtime to the application.
50. Define overview of Azure fabric?
Ans:

51. What is federation in SQL Azure?
Ans:
Organization in SQL Azure is introduced for scalability. Federation helps both managers and developers scale information. It helps managers by repartitioning and redistributing information in a simpler manner. It enables developers in the layer of routing and sharing of information. It helps in routing without application downtime.
52. What is Azure Kubernetes service?
Ans:
Azure Kubernetes Service is a managed container orchestration service based on the open source Kubernetes system, which is available on the Microsoft Azure public cloud. AKS is designed for organizations that want to build scalable applications with Docker and Kubernetes while using the Azure architecture.
53. Are containers OS agnostic?
Ans:
OS agnostic images – Docker containers are built from Docker images, these are OS agnostic and can therefore be deployed on any platform on which the Docker engine can run.
54. What is service fabric Explorer?
Ans:
service Fabric Explorer (SFX) is an open-source tool for inspecting and managing Azure Service Fabric clusters. Service Fabric Explorer is a desktop application for Windows, macOS and Linux
55. What are the different programming models supported by Azure Service Fabric?
Ans:
- Reliable Services
- Reliable Actors
- Containers
- ASP.NET Core
- Guest Executables
56. What is Reliable Services?
Ans:
Reliable Services in Azure Fabric are services addressing single or multiple business concerns. However they are different from the normal web services that we usually develop. By design they are reliable, scalable, highly available and consistent as they are hosted on multiple nodes, partitions and replicas in a cluster. Reliable services can easily access rest of Service Fabric APIs and due to this they can discover other services with ease, communicate with other services, can do health reporting and much more.
57. What are Reliable Actors?
Ans:
- Code to achieve business functionality
- Storage to persist Service state
- Communication system or a mailbox queue to store messages sent by other actors that it will process.
- To achieve parallel processing the client can talk to multiple actors. Though the actors can run in parallel, each actor can process the messages it has received in its queue sequentially. In the case of Azure Service Fabric the actors are denoted as Virtual Actors. They are not explicitly created or destroyed in the memory, rather they get activated or created when the first call or invocation is made. The actor object gets destroyed when it is not used for some period of time. The Reliable Actor model is based on the top of the Reliable Stateful Service model. A Virtual Actor consists of Reliable Stateful Service that addresses the need to have code and a persistent state. The communication part is handled using Service Remoting
Reliable Actors are based on the Actor programming model. An actor has three primary components
58. What are the benefits of using containers with Service Fabric?
Ans:
Compared to virtual machines, containers have the following advantages:
Small: Containers use a single storage space and layer versions and updates to increase efficiency.
Fast: Containers don’t have to boot an entire operating system, so they can start much faster–typically in seconds.
Portability: A containerized application image can be ported to run in the cloud, on premises, inside virtual machines, or directly on physical machines.
Resource governance: A container can limit the physical resources that it can consume on its host.
59. What is Azure Cloud Service?
Ans:
Cloud service can convey a multiple web application in Azure, characterizing a number of parts to disseminate handling and permit adaptable scaling of your application. A cloud service comprises of a minimum of one web pars as well as specialist parts, each with its own particular application documents and design.The fundamental favourable position of cloud service is the capacity to help more complex multi-level structures.
60. What is the architecture of Azure Stack HCI?
Ans:

61. Which two metrics affect resource governance which is supported in Service Fabric?
Ans:
Two metrics affects resource governance, supported in Service Fabric:
- CPU: metric name – servicefabric:/_CpuCores
- Memory: metric name – servicefabric:/_MemoryInMB
62. Define horizontal scaling?
Ans:
Horizontal scaling can be termed as scaling by increasing machine in the pool of resources.
63. Define vertical scaling?
Ans:
Vertical scaling can be termed as scaling by increasing more power like CPU or RAM to a machine.
64. What Is A Service Definition File?
Ans:
The cloud service definition file (.csdef) defines the service model, including the number of roles.
65. How are Azure Marketplace subscriptions priced?
Ans:
Pricing will vary based on product types. ISV software charges and Azure infrastructure costs are charged separately through your Azure subscription. Pricing models include:
BYOL Model: Bring-your-own-license. You obtain outside of the Azure Marketplace, the right to access or use the offering and are not charged Azure Marketplace fees for use of the offering in the Azure Marketplace.
Free: Free SKU. Customers are not charged Azure Marketplace fees for use of the offering.
Free Software Trial: Full-featured version of the offer that is promotionally free for a limited period of time. You will not be charged Azure Marketplace fees for use of the offering during a trial period. Upon expiration of the trial period, customers will automatically be charged based on standard rates for use of the offering.
Usage-Based: You are charged or billed based on the extent of your use of the offering. For Virtual Machines Images, you are charged an hourly Azure Marketplace fee. For Data Services, Developer Services, and APIs, you are charged per unit of measurement as defined by the offering.
Monthly Fee: You are charged or billed a fixed monthly fee for a subscription to the offering (from the date of subscription start for that particular plan). The monthly fee is not prorated for mid-month cancellations or unused services.
66. What is role instance in Azure?
Ans:
There are two types of Azure Cloud Services roles. The only difference between the two is how your role is hosted on the VMs: Web role: Automatically deploys and hosts your app through IIS. Worker role: Does not use IIS, and runs your app standalone.
67. What are the expected values for the Startup File section when I configure the runtime stack?
Ans:
For Node.Js, you specify the PM2 configuration file or your script file. For .NET Core, specify your compiled DLL name. For Ruby, you can specify the Ruby script that you want to initialize your app with.
68. My web app still uses an old Docker container image after I’ve updated the image on Docker Hub. Does Azure support continuous integration/deployment of custom containers?
Ans:
Yes, it does. For private registries, you can update the container by stopping and then re-starting your web app. Alternatively, you can also change or add a dummy application setting to force an update of your container.
69. What are the instance sizes of Azure?
Ans:
- Compute Instance Size CPU Memory Instance Storage I/O Performance
- Extra Small 1.0 GHz 768 MB 20 GB Low
- Small 1.6 GHz 1.75 GB 225 GB Moderate
- Medium 2 x 1.6 GHz 3.5 GB 490 GB High
- Large 4 x 1.6 GHz 7 GB 1,000 GB High
- Extra-large 8 x 1.6 GHz 14 GB 2,040 GB High
Windows Azure will handle the load balancing for all of the instances that are created. The VM sizes are as follows:
70. Define microservices architecture design?
Ans:

71. What are the three types of roles in the Compute component in Windows Azure?
Ans:
- WEB
- Worker
- VM
72. What are the options to manage the session state in Windows Azure?
Ans:
- Windows Azure Caching
- SQL Azure
- Azure Table
73. How would you categorize Windows Azure?
Ans:
(IaaS/PaaS/SaaS)
PaaS (Platform as a Service)
74. What is the Text Analytics API in Azure Machine?
Ans:
- Text Analytics API is a suite of text analytics web services built with Azure Machine Learning. The API can be used to analyze unstructured text for tasks such as sentiment analysis and keyphrase extraction.
- The API returns a numeric score between 0 & 1. Scores close to 1 indicate positive sentiment, while scores close to 0 indicate negative sentiment.
- The advantage of this API is that a new model need not be designed and trained, the user only needs to bring the data and call the service to get the sentiment results.
- However, because this is only the initial release of this service only English is supported right now.
- How it works: Text Analytics API does not simply use a lexicon approach to map words such as “good or bad” to return the results.
- Instead, it uses advanced natural language processing techniques under the hood.
75. What is the difference between Table, Queue, and Blob storage?
Ans:
To use Azure Storage, you just need to have an Azure Storage Account. Using this account you can access the service of the Azure Storage. Actually, Azure Storage provides two types of storage accounts.
Standard Storage Account: It is for Blob, Table, and Queue Storage.
Premium Storage Account: It is for Azure Virtual Machine Disks Only.
BLOB STORAGE: It can store any type of data; data can be a document file, media file, exe or dll, images, text file or any other data file. So, basically, it is used for storing the objects. So, as the definition says, we can store large amounts of the unstructured data into the blob storage.
TABLE STORAGE: It is like a table inside the SQL Server. So, it is used to store the structured data. Table storage is a NoSQL key-attribute data store. It means every data stored in the table is stored with a typed property name. It is very fast when you are working with a large amount of data. It doesn’t use schema for developing the table.
QUEUE STORAGE: Sometimes, it is required to transfer the data in the format of the message over the internet between the two cloud services. In that scenario, we prefer to use the queue storage. You can create a large number of queues to process your data. Every queue contains a large number of the message and every message size may be up to 64 KB.
76. What are SQL Azure firewall rules?
Ans:
SQL Azure firewall rules are provided to protect the data and to prevent access restrictions to the SQL Azure database. Firewall grants access to the originating IP from which we are trying to access the database. In order to configure the firewall, we need to configure a range of acceptable IP addresses upon which we try to connect to the SQL Azure server using the Management Portal or with the SQL Server Management Studio. Let us see the step by step process of adding and deleting rules as per our IP configurations.
All-access to SQL Azure is blocked by a firewall.
By default Database created in SQL Azure is blocked by firewall for security reasons. Any attempt from external access or access from any azure application is blocked by a firewall.
77. What is Service Fabric in Azure?
Ans:
- Develop massively scalable applications that are self-healing.
- Develop with a “datacenter on your machine” approach. The local development environment is the same code that runs in the Azure datacenters.
- Develop applications composed of microservices, executables, and other application frameworks of your choice, such as ASP.NET, Node.js, etc.
- Develop stateless and stateful (micro)services and make these highly reliable.
- Simplify the design of your application by using stateful (micro)services in place of caches and queues.
- Deploy applications in seconds.
- Deploy to Azure or to on-premises clouds running Windows Server with zero code changes. Write once and then deploy to any Service Fabric cluster.
- Deploy applications at higher density than virtual machines, deploying hundreds or thousands of applications per machine.
- Deploy different versions of the same application side by side, each independently upgradable.
- Manage the lifecycle of your stateful applications without any downtime, including breaking and nonbreaking upgrades.
Azure Service Fabric is a next-generation middleware cloud platform to build scalable, reliable, and managed enterprise applications. Microsoft is already using Service Fabric powers in many of its products, including Azure SQL Database, Azure DocumentDB, Cortana, and Power BI.
78. What is Azure Explorer?
Ans:
Azure Explorer is a free Microsoft Azure storage tool; in this, we can manage all our Microsoft Azure blobs at a commonplace or one place. Azure Storage Explorer is a useful GUI tool for inspecting and altering the data.
In Azure Explorer, we have “Azure Storage Account”, and in the Azure Storage Account, we can manage more than one Blob Container, in Blob Container we can create page blobs as well as new folders to store our files.
For the installation of Azure Explorer we need to go to its download link. After going to the above link, you will see the following window. Click “DOWNLOAD AZURE EXPLORER”.
79. How can you connect an Azure Hosted website to FTP?
Ans:
Stop: Stopping the virtual server.
Restart: It will restart the server if something went wrong.
Manage Domains: If upgrade from a free account to the basic or standard account you can manage your domains here.
Delete: It will delete the entire website.
WebMatrix: To link the website to WebMatrix.
If you click on the website you will be taken in the dashboard where different operations are available
Monitor: Graphical representation of request, uptime, data in, data out.
Configure: Change the language setting version used.
WebJobs: Automatic tasks that are scheduled will be discussed in upcoming articles.
Scaling: More than one instance of the website can be created to balance the load.
80. Define enterprise applications with Azure service fabric?
Ans:

81. What is the difference between “price,” “software price,” and “total price” in the cost structure for Virtual Machine offers in the Azure Marketplace?
Ans:
“Price” refers to the cost of the Azure Virtual Machine to run the software. “Software price” refers to the cost of the publisher software running on an Azure Virtual Machine. “Total price” refers to the combined total cost of the Azure Virtual Machine and the publisher software running on an Azure Virtual Machine.
82. What is Azure Active Directory (Azure AD)?
Ans:
- External resources, including Microsoft 365, the Azure portal, and a big number of SaaS applications
- Internal resources, such as apps on a corporate network and intranet, as well as any cloud-based apps built by that organization
- IT Admins
- App Developers
- Azure, Office 365, Microsoft 365, or Dynamics CRM online subscribers
Azure AD is a cloud-based IAM solution and directory by Microsoft. It brings together application access management, core directory services, and identity protection and turns them into a single solution. It helps employees of an organization sign in and access resources such as:
Azure AD is intended for use by:
83. What is Azure Data Factory?
Ans:
Azure Data Factory is a serverless and cloud-based data integration service and platform used for the creation of ETL and ELT pipelines. It helps in the creation of data-driven workflows for the planning and execution of data movements and data transformation at scale.
84. What is Azure Databricks?
Ans:
- Azure Databricks SQL Analytics
- Azure Databricks Workspace
- Azure Databricks’ integration with the security, compute, analytics, storage, and AI services that are natively provided by cloud providers facilitates the unification of data and AI workloads.
Azure Databricks is a Data Analytics platform that offers two environments for the development of data-intensive applications:
85. What is Azure Data Lake?
Ans:
Azure Data Lake is a cloud platform that supports Big Data Analytics through its unlimited storage for structured, semi-structured, or unstructured data of all types and sizes.
86. What are Azure resources?
Ans:
Any entity managed by Azure can be referred to as an Azure resource. The following are some examples of Azure resources: Storage accounts, virtual networks, virtual machines, etc.
87. What are the three principal segments of the Windows Azure platform?
Ans:
- Web roles utilized for web application programming and upheld by IIS7
- Worker roles utilized for foundation handling of web roles
- Virtual machine (VM) roles utilized for moving windows server applications to Windows Azure in a simple way
- Windows Azure Storage
- Queues for informing between web parts and worker roles
- Tables for storing structural data
- BLOBs (Binary Large Objects) to store contents, records, or vast information
- Windows Azure Drives (VHD) to mount a page BLOB. These can be transferred and downloaded by means of BLOBs
- Windows Azure AppFabric
- Service bus
- Access
- Caching
- Integration
- Composite
A. Windows Azure Compute
Windows Azure gives a code that can be managed by the hosting environment. It gives the calculation benefit through parts. Windows Azure backs three types of roles:
It gives four types of storage services:
AppFabric provides five services:
88. Define Windows Azure AppFabric.
Ans:
Windows Azure Diagnostics empowers you to gather diagnostic data from an application running in Windows Azure. Diagnostic data is used for capacity planning and evaluation.
89. What is the distinction between Windows Azure Queues and Windows Azure Service Bus Queues?
Ans:
Azure Queues give a solid, diligent messaging between and within the services. They also highlight a very straightforward rest-based get/put/peek interface. | Bus Queues are part of a more extensive Windows Azure messaging framework that supports queuing. |
90. What is the Azure architecture center?
Ans:

91. What is autoscaling in Azure?
Ans:
Scaling by including extra instances is frequently referred to as scaling out. Windows Azure likewise supports scaling up by utilizing bigger roles rather than more role instances.
By adding and expelling role instances to our Windows Azure application while it is running, we can adjust the execution of the application against its running costs.
An autoscaling solution reduces the amount of manual work engaged in dynamically scaling an application.
92. What are the features of Windows Azure?
Ans:
- Websites enable the designers to assemble the sites utilizing ASP.NET, PHP, etc., and send these websites utilizing FTP, Git, etc.
- SQL database, formally known as Azure database, makes, broadens, and scales the application into the cloud utilizing Microsoft SQL Server.
- This is Microsoft’s Platform as a Service that supports multilevel applications and automated deployment
Windows Azure runs and stores the information on Microsoft data centers.
The main features are as follows:
93. What are the differences between a public cloud and a private cloud?
Ans:
They enable a firm to have applications in the cloud while tending to concerns with respect to data security and control that is frequently ailing in a public cloud environment. | Private clouds are those that are constructed solely for an individual enterprise.Private cloud is otherwise called an internal cloud or enterprise cloud and dwells on the organization’s Intranet or hosted data center where the data is protected. |