Question:- How can you create an HDInsight Cluster in Azure?
Answer:- To make an Azure HDInsight Cluster, open the Azure portal > click on New > select Data Services > click on HDInsight. Hadoop is the default and native execution of Apache Hadoop. HBase is an Apache open-source NoSQL database based on Hadoop that gives random access and solid consistency for a lot of unstructured data. Apache Storm is a distributed, fault-tolerant, open-source computation system that enables you to process data in real-time.
Question:- What is Text Analytics API in Azure Machine?
Answer:- Content Analytics API is a part of content examination web administrations worked with Azure Machine Learning. The API can be utilized to analyze unstructured content for tasks such as sentiment analysis and key-phrase extraction. The API restores a numeric score between 0 and 1. Scores near 1 show positive sentiment, while scores near 0 demonstrate negative sentiment. The upside of this API is that another new model need not be planned and prepared; the user just needs to bring the data and call the service to get the sentiment results.
Question:- What is the Migration Assistant tool in Azure Websites?
Answer:- Migration Assistant tool will examine our IIS installation and recognize the sites that can be migrated to the cloud, featuring any components which can’t be migrated or are unsupported on the platform. Once broken down, this tool will likewise create sites and databases provided under the given Azure membership.
Question:- What is the distinction between Public Cloud and Private Cloud?
Answer:- A public cloud is utilized as a service through the Internet by users, while a private cloud is deployed within specific limits like firewall settings and is totally overseen and checked by the users dealing with it in an organization.
Question:- What is Azure Service Level Agreement (SLA)?
Answer:- The SLA ensures that, when you send two or more role instances for each role, access to your cloud service will be maintained not less than 99.95 percent of the time. Additionally, identification and re-correction activities will be started 99.9 percent of the time when a role instance’s procedure isn’t running.
Question:- How to add an administrator to the Azure portal?
Answer:- To add an administrator to the Azure portal, it has to be given the owner role. It will be able to manage only those resources in the subscription that are assigned to it. To add an administrator, follow these steps: 1. Sign in to the Azure portal 2. Go to the Hub menu and then to Subscription and select the subscription that the administrator will need access to 3. Select Access control (IAM) in the subscription blade, and then click on Add 4. Go to Select a role, and click on Owner 5. Here, provide the email address of the user to be assigned as the owner 6. Click on the user, and then click on Select
Question:- How to connect to Azure Database from SQL Management Studio?
Answer:- 1. The first time you start the SQL Server Management Studio, the Connect to Server dialog box opens up automatically. You can also open it manually by going to Object Explorer > Connect > Database Engine. 2. Then, enter the following information in the Connect to Server window: Server Type Database Engine Server Name Enter the name of your Azure SQL Database or Azure Managed Instance Authentication SQL Server Authentication Login Enter the server account user ID Password Enter the server account passwordYou can also choose to change the additional connection options by going to Options. 3. Click on Connect after completing all the required fields If the firewall settings are not set up, a prompt appears to configure the same. Once signed in, provide the Azure account login information, and set the firewall rule. Then, click on OK. 4. To verify if your Azure Database connection is successful, expand and explore Object Explorer for the server name, the SQL Server version, and the username.
Question:- How to create a virtual machine on Azure?
Answer:- To create a VM on Azure, you need to follow the below steps: 1. Sign in to Azure 2. Sign in to the Azure portal 3. Search for virtual machines in the search box 4. Under Services, select Virtual machines 5. Click on Add in the Virtual machines page 6. In the Basics tab, under Project details, select the correct subscription, and choose Create new resource group 7. Type myResourceGroup for the name 8. Under Instance details, the Virtual machine name should be myVM 9. Choose your Region [e.g., (US) East US] 10. Choose Windows Server 2019 Datacenter for the Image 11. Leave the rest as default 12. Under Administrator account, enter a username and a password 13. Under Inbound port rules, click on Allow selected ports, and then select HTTP (80) and RDP (3389) for Select inbound ports 14. The rest will remain as default here 15. Finally, click on the Review + create button
Question:- How to deploy SQL Database in Azure?
Answer:- 1. Authenticate to the Azure portal 2. Click on SQL Databases 3. Click on Servers 4. Click on a server name to connect to 5. Press Configure 6. Open SQL Server Management Studio 7. Connect to Database services (usually, this happens by default) 8. Finally, click on Connect
Question:- How to export users from Azure Active Directory?
Answer:- You can export users from Azure AD by following the below-mentioned steps: 1. Install the Azure PowerShell module using the following cmdlet: install-module az 2. To connect to Azure AD and Azure, run: Connect-azaccount 3. To export, all users to a CSV file, run: Get-AzADUser | export-csv file.csv 4. If you only need to export the first 10 users, then you can use: Get-AzADUser -First 10 | export-csv file.csv 5. To export all users after the first 2 users, you can use: Get-AzADUser -Skip 2 | ft
Question:- How to create a resource group in Azure?
Answer:- To create a resource group in Azure: 1. Log in to the Azure portal 2. In the menu on the left, select Resource groups 3. In the Resource groups page, click on Add 4. Fill in the details in the fields as follows: • Subscription: Select your Microsoft Azure subscription • Resource group name: Enter a unique name • Resource details region: Select a location 5. Click on Review + create 6. Once validation is passed, click on Create to create your resource group That’s it in our blog on MS Azure interview questio
Question:- What are the different storage services available in Azure apart from Blob storage?
Answer:- Azure offers three other types of storage services, apart from Blob storage, table storage, queue Storage, and file storage. • Azure table storage: It allows the deployment of applications with semi-structured data and a key-value store, which is NoSQL-based. • Used when there is a requirement for applications with a flexible data schema • Emphasis is on enterprise-level data and strongly follows consistent models • Data is in terms of entities grouped under tables • Azure queue storage: The message queue system is capable of handling large workloads through the development of flexible and durable applications. • Ensures that the applications are scalable and less likely to have component failures • The queue monitoring helps the application ensure that the requirements are met • Azure file storage: It offers file sharing and access using server message block (SMB) protocol. The data is secured with SMB 3.0 and HTTPS. • Improves the performance of on-premise applications • Azure takes care of OS deployments and hardware management
Question:- Create a Virtual Machine with Azure CLI.
Answer:- Following is an example how one can create a VM using Azure CLI: az vm create --resource-group myResourceGroupName --name myVM --image Win19Datacenter --public-ip-sku Standard --admin-username AzureuserNAME --admin-password AzurePASSWORD
Question:- How will you execute code with the help of Azure if there is no server?
Answer:- Azure Functions can execute code without a server. These services simplify complex orchestration and challenges. They help connect with other services without hard coding of integrations, which speeds up the development process. Developers can write and focus on the business logic code saving time and effort. Azure Application Insights can help analyze and monitor code performance as well as identify hiccups and failure points across various application components.