This section includes 7 InterviewSolutions, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What is Azure Blob Storage? |
Answer»
|
|
| 2. |
Is it possible to get a public DNS or IP address for the Azure Internal Load Balancer? |
|
Answer» No! As the name itself SAYS, Azure INTERNAL Load Balancer SUPPORTS only PRIVATE IP addresses, and hence the assignment of a public IP address or DNS name is not possible. |
|
| 3. |
What would happen when the maximum failed attempts are reached during the process of Azure ID Authentication? |
|
Answer» In case of maximum FAILED attempts, the AZURE account would GET locked and the method of LOCKING is dependent on the protocol that analyzes the entered password and the IP addresses of the login requests. |
|
| 4. |
What are the differences between Azure Scale Sets and Availability Sets? |
|||||||||||||||||||||
|
Answer» The main difference between Azure Scale Sets and Availability Sets are given below:
|
||||||||||||||||||||||
| 5. |
Is it possible to login to a Linux Virtual Machine without using a password? |
|
Answer» Yes, it is possible by making USE of the Key Vault MAPPING to any ADMIN VM, we can log in to another VM WITHOUT the NEED for a password. |
|
| 6. |
What would be the best feature recommended by Azure for having a common file sharing system between multiple virtual machines? |
|
Answer» AZURE provides a service called Azure File System which is used as a COMMON repository system for sharing the data across the Virtual Machines configured by making use of PROTOCOLS like SMB, FTPS, NFS, etc. |
|
| 7. |
What is the best Azure solution for executing the code without a server? |
Answer»
|
|
| 8. |
What is cspack in Azure? |
|
Answer» It is a command-line tool that is used for generating service package files. The tool also helps in preparing the application for deployment in Microsoft AZURE or compute emulator. Every project of CLOUD service TYPE has the .cscfg file which is basically the cloud service configuration file that is generated by means of cspack tool and is primarily used to store:
|
|
| 9. |
Define azure storage key. |
Answer»
|
|
| 10. |
Is it possible to design applications that handle connection failure in Azure? |
|
Answer» Yes, it is possible and is done by means of the Transient Fault Handling Block. There can be multiple causes of transient failures while using the CLOUD environment:
Instead of showing errors to the user periodically, the application can recognize the errors that are transient and automatically try to perform the same operation again typically after some seconds with the hope of ESTABLISHING the connection. By making use of the Transient Fault Handling Application Block mechanism, we can generate the retry INTERVALS and make the application perform retries. In the majority of the cases, the error would be resolved on the second try and hence the user need not be made aware of these errors unnecessarily. Following is the sample code that can be used for the retry policy. Here, if the connection is not successful, then the action is retried based on the retry policy defined. There are 3 retry strategies - Fixed Interval, Incremental Interval, Exponential Backoff Strategy. /**** Class to detect Transient Blocks - Here* OperationCancelledException is * detected and then the retry strategy is employed.*/internal class AppTransientDetection : ITransientErrorDetectionStrategy{ bool IsTransient(Exception exception) => exception is OperationCanceledException;}/**** Retry Strategy - Here Fixed Interval Strategy is employed and is retried for 5 times.*/RetryStrategy retryStrategy = new FixedInterval(retryCount: 5, retryInterval: TimeSpan.FromSeconds(2));RetryPolicy retryPolicy = new RetryPolicy(new AppTransientDetection(), retryStrategy);retryPolicy.ExecuteAction(() => { try { string commandText = @”USE FEDERATION User_Federation(ShardId =” + shardId + “) WITH RESET, FILTERING=ON”; userEntity.Connection.Open(); userEntity.ExecuteStoreCommand(commandText); } catch (Exception e) { userEntity.Connection.Close(); SqlConnection.ClearAllPools(); } }); |
|
| 11. |
What do you need to do when drive failure occurs? |
|
Answer» The following steps NEED to be performed when the drive FAILURE occurs: |
|
| 12. |
What are the available options for deployment environments provided by Azure? |
|
Answer» Azure provides two deployment environments, they are:
|
|
| 13. |
What do you understand about the “Availability Set”? |
Answer»
|
|
| 14. |
Define Azure virtual machine scale sets |
Answer»
|
|
| 15. |
What is Azure Redis Cache? |
Answer»
|
|