Login
Sign up
Categories
IT & Programming
Design & Multimedia
Writing & Translation
Sales & Marketing
Admin Support
Engineering & Manufacturing
Finance & Management
Website Designing & Development
Database Management
Networking & Troubleshooting
Aviation & Aerospace
Softwares & Applications
Stocks & Investments
Electronics & Appliances
Online Tools
General Knowledge & Aptitude
Mathematics
Educational Subjects & Courses
Business & Organization
Health & Wellbeing
Culture & Ethics
IT Field Knowledge & Experience
Languages & Communication
Entrepreneurship & Leadership
Economics & Development
Mass Communication & Media
Research Methods & Evaluation
Public Relations & Dealings
Educational Methods and Research
Educational Subjects & Techniques
Crime & Justice
Governments & Policies
Cyber Security & Ethical Hacking
Hospitality & Tourism
Soft Skills & Personal Management
Transportation & Driving Rules
Forest and Nature
Religion
Skill Assessment
MCQs
PDFs
Login
Sign up
Categories
IT & Programming
Design & Multimedia
Writing & Translation
Sales & Marketing
Admin Support
Engineering & Manufacturing
Finance & Management
Website Designing & Development
Database Management
Networking & Troubleshooting
Aviation & Aerospace
Softwares & Applications
Stocks & Investments
Electronics & Appliances
Online Tools
General Knowledge & Aptitude
Mathematics
Educational Subjects & Courses
Business & Organization
Health & Wellbeing
Culture & Ethics
IT Field Knowledge & Experience
Languages & Communication
Entrepreneurship & Leadership
Economics & Development
Mass Communication & Media
Research Methods & Evaluation
Public Relations & Dealings
Educational Methods and Research
Educational Subjects & Techniques
Crime & Justice
Governments & Policies
Cyber Security & Ethical Hacking
Hospitality & Tourism
Soft Skills & Personal Management
Transportation & Driving Rules
Forest and Nature
Religion
Skill Assessment
MCQs
PDFs
Login
Sign up
Skill Assessments
>
IT & Programming
>
Microsoft Azure Skill Assessment
>
Quiz # 7
Microsoft Azure Quiz # 7
Instructions
Quiz:
Microsoft Azure Quiz # 7
Total Questions:
204 MCQs
Time:
204 Minutes
Note
Do not refresh the page while taking the test.
Results along with correct answers will be shown at the end of the test.
Start Quiz
Microsoft Azure Quiz # 7
End Quiz
Question
1
of 204
00:00
Your web app hosted on Azure VMS generates a large number of random (non-sequential) writes. Which storage type should you select for your application?
Page blob
Block blob
Table storage
Queue storage
You are configuring a release pipeline in Azure DevOps. You need to reference several application variables across multiple pipelines at deployment time. How should you store application variables?
Store secrets in Azure Key Vault.
Store secrets in a configuration file.
Configure release variables.
Configure a variable group.
You have configured the Kineteco Web App to run on Azure Kubernetes Service (AKS). Application resources need to scale to meet spikes in traffic. What should you do? The solution should minimize manual effort and cost.
Configure the horizontal pod autoscaler (HPA).
Manually scale pod when necessary.
Configure burst to Azure Container Instances.
Do nothing. Pods running on AKS scale up automatically.
You are configuring a release pipeline in Azure DevOps. You need to read secrets from Azure Key Vault during pipeline execution. How should you retrieve application variables?
With a community-developed Key Vault task
With an ARM template
All of these answers
With an Azure CLI script in a Bash task
You need to update the data within an existing database in Azure SQL with your changes. You want to test this process from your development workstation before incorporating the update into your CI/CD process. Which command will you run to update the schema on the target database?
SqlPackage.exe /TargetFile:" myapp.bacpac " /Action:Export /SourceServerName:"kinetecosql.database.windows.net" /SourceDatabaseName:"kinetecoweb" /SourceUser:"admin" /SourcePassword:"MyPassword"
SqlPackage.exe /TargetFile:" myapp.bacpac " /Action:Import /SourceServerName:"kinetecosql.database.windows.net" /SourceDatabaseName:"kinetecoweb" /SourceUser:"admin" /SourcePassword:"MyPassword"
SqlPackage.exe /TargetFile:"./myapp.bacpac" /Action:Publish /SourceServerName:"kinetecosql.database.windows.net" /SourceDatabaseName:"kinetecoweb" /SourceUser:"admin" /SourcePassword:"MyPassword"
SqlPackage.exe /TargetFile:"./myapp.bacpac" /Action:Extract /SourceServerName:"kinetecosql.database.windows.net" /SourceDatabaseName:"kinetecoweb" /SourceUser:"admin" /SourcePassword:"MyPassword"
You have a web app hosted in Azure App Service that reads from and writes data to an Azure SQL Database back-end. You need to send email alert when your web app returns any failure HTTP status code (anything except HTTP 200) for a user request. Which solution should you use?
Service map in Azure Monitor
Application maps in Azure Application Insights
Availability tests in Azure Application Insights
Profiler in Azure Application Insights
Your new release pipeline in Azure DevOps includes a Bash task that runs an Azure CLI script. The Bash task running script fails. The agent setting of the agent job in the release pipeline is pictured below. The solution must minimize cost. What should you change in agent pool settings?
Change to a self-hosted agent pool running Ubuntu 16.04 LTS or later.
Changed to a hosted pool running Windows 2019.
Change to a hosted agent pool running Ubuntu 16.04 LTS or later.
Change to a self-hosted agent pool running Windows 2019.
You are selecting a cloud messaging solution for your retail mobile app. Requirements for the solution are: Process messages in the order they are received: preserve messages in case of a processing delay; end guarantee message delivery. Which solution should you use?
Event Grid
Service Bus
Event Hub
Queue Storage
You need to provision a port mapping on the underlying node that allows the application to be accessed directly with the IP address and on the cluster node. Which service type should you provision?
LoadBalancer
NodePort
Cluster IP
ExternalName
What is the difference between a user-assigned managed identity and a system-assigned managed identity?
The lifecycle of a user-managed identity is managed separately from the resource.
With a user-assigned managed identity, Azure manages the password for you.
The lifecycle of a system-managed identity is managed separately from the resource.
With a system-assigned managed identity, Azure manages the password for you.
You need to configure user access to Azure DevOps agent pools to meet the following requirements: Use an agent pool when authoring build or release pipelines for the project; view the agent pool and agents of the organization; and use the principle of least privilege. Which role memberships are required for the Azure DevOps organization and the project?
Organization: Administrator; Project: Service Account
Organization: Reader; Project: Service Account
Organization: Reader; Project: Administrator
Organization: Service Account; Project: Reader
You have created an Azure CLI script for a release pipeline in Azure DevOps. You need to reference the working directory for the running job. Which variable should you reference?
Agent.WorkFolder
Agent.HomeDirectory
Agent.BuildDirectory
Agent.ToolsDirectory
You are selecting Azure technologies for a new a pp that will process print jobs in a facility with thousands of printers. A pool of worker processes will send jobs to printer and report results when jobs are complete. Requirements for the solution are: Worker processes will retrieve and process messages as capacity permits; if a worker process or printer fails, a worker process should be able to retrieve message and resume processing; and the solution should maintain a central (server-side) log of messages processed. Which solution should you use?
Event Hub
Event Grid
Service Bus
Queue Storage
In Azure Key Vault, you can manage access to your application secrets by setting permissions at any level except _.
On the secret itself
By secret type
On the Key Vault instance
At the Azure Subscription level
Your company hosts a web application that uses Azure SQL Database to store data. You need to implement measures that allow only members of the managers group to see sensitive information. Which two actions should you perform?
Implement dynamic data masking and include the managers group.
Implement transparent data encryption and include the managers group.
Implement dynamic data masking and exclude the managers group.
Implement transparent data encryption and exclude the managers group.
The Kineteco Inventory App uses an Azure SQL Database instance to store application and store inventory data. Store employees report occasional periods where queries in the web interface never return data. You suspect a database issue and need to identify the performance issue as soon as possible. The resource health dashboard reports "No health related issues found." What should you do?
Run the troubleshooting wizards under Resource and solve problems.
Enable Intelligent Insights.
Configure App Insights to alert admins when web interface experiences latency.
Configure an alert rule to email DBAs when DTU usage hits 100%.
Your web application needs to access files on an Azure Files share. Which option will deliver the highest throughput?
SMB
REST API
Storage Explorer
NFS
You have source code for a project in a repository on GitHub. You need to migrate source code to a repository in Azure Repos. The solution should minimize effort. Which solution should you recommend?
Download the GitHub repository to a Zip file, and then unzip the repository in Azure DevOps.
From the Import a Git repository menu, select Import.
Create a service connection to the GitHub repository.
Create a webhook in GitHub and then trigger it from Azure DevOps.
You need to facilitate user acceptance testing (UAT) on your web application hosted in App Service. Testers must approve changes before they are deployed to production. You should implement support for these requirements with a minimum of cost and complexity. What should you do?
Configure an additional App Service instance. In Azure DevOps, enable an approval gate for deployment.
Configure an Azure load balancer to redirect traffic to the approved App Service instance.
Configure an additional deployment slot in the existing App Service instance.
Configure an App Service Environment (ASE).
Your microservices application includes a logging component that performs a large number of sequentinal writes. Which type of Azure Storage should you use?
Table storage
Append blob
Page blob
Block blob
Group policy objects are not being applied to domain controllers because the Default Domain Controllers and Default Domain group policies are corrupt. What can you run in a command prompt to recover them?
Dcpromo.exe
Dcgpofix.exe
Dcdiagfix.exe
Ntdsutil.exe
Your JavaScript app hosted in Azure App Service needs to be able to make calls to a remote domain in another Azure region. Which App Service feature do you need to configure?
CORS
Deployment slots
WebJobs
Custom domains
Bindings in Azure Function triggers have a direction property that is always _.
Parallel
Out
Asynchronous
In
Submit Test
Prev Question
ABCd
Next Question
Microsoft Azure Skill Assessment
Login to see Skill Score (It's Free)
Your Skill Level:
Poor
Retake Quizzes to improve it
Start Assessment
Buy us a coffee
Microsoft Azure Skill Assessment
Login to see Skill Score (It's Free)
Your Skill Level:
Poor
Retake Quizzes to improve it
Start Assessment
Buy us a coffee