31. You are implementing an Azure API app that uses built-in authentication and authorization functionality. All app actions must be associated with information about the current user. You need to retrieve the information about the current user. What are two …
21. You are developing a software solution for an autonomous transportation system. The solution uses large data sets and Azure Batch processing to simulate navigation sets for entire fleets of vehicles. You need to create compute nodes for the solution …
11. You develop an Azure web app. You monitor performance of the web app by using Application Insights. You need to ensure the cost for Application Insights does not exceed a preset budget. What should you do? A. Implement ingestions …
31. You are automating the build process for a Java-based application by using Azure DevOps. You need to add code coverage testing and publish the outcomes to the pipeline. What should you use? A. Cobertura B. NUnit C. Coverage.py D. …
21. In Azure DevOps, you create Project3. You need to meet the requirements of the project. What should you do first? A. From Azure DevOps, modify the build definition. B. From SonarQube, obtain an authentication token. C. From Azure DevOps, …
11. You are developing a multi-tier application. The application will use Azure App Service web apps as the front end and an Azure SQL database as the back end. The application will use Azure functions to write some data to …
1. How can another workflow be triggered from within a current one? a. Using the Open Application Activity b. Using the Invoke Code activity c. Using the Invoke Method activity d. Using the Invoke Workflow File activity Correct! Wrong! 2. …
21. Which one of the following is incorrect? A. The variables used inside function are called local variables. B. The local variables of a particular function can be used inside other functions, but these cannot be used in global space …
11. What is the output of the following code? 1. a = {“a”:1, “b”:2, “c”:3} 2. b = dict(zip(a.values(),a.keys())) 3. print(b) a) {‘a’: 1, ‘b’: 2, ‘c’: 3} b) An exception is thrown c) {‘a’: ‘b’: ‘c’: } d) {1: …
1. What is the output of the code snippet shown below? X=”hi” print(“05d”%X) a) 00000hi b) 000hi c) hi000 d) error Correct! Wrong! 2. Which of the following is invalid? a) _a = 1 b) __a = 1 c) __str__ …