Search test library by skills or roles
⌘ K

About the test:

Онлайн -тест Azure оценивает способность кандидата создавать и масштабировать виртуальные машины, параметры хранения и виртуальные сети с Azure. В тесте используются вопросы MCQ на основе сценариев для проверки понимания Azure Compute (Virtual Machines, App Services, функции), Storage Azure (SQL, Blob, SQL), Azure Networking (виртуальные сети, шлюз, NSG) и Azure Security.

Covered skills:

  • Основы облачных вычислений (IAAS; PaaS)
  • Хостинг и разработка веб -приложений и мобильных приложений
  • Azure Storage (Blob; файлы; таблица)
  • Azure Data Warehousing
  • Виртуальные машины Azure (масштабирование; стратегия резервного копирования)
  • Сеть в Azure (виртуальные сети; подсеть; группа безопасности сети; DNS)
  • Базы данных Azure (SQL; NOSQL; в памяти)
  • Безопасность и мониторинг Azure

Try practice test
9 reasons why
9 reasons why

Adaface Microsoft Azure Test is the most accurate way to shortlist Разработчик Azures



Reason #1

Tests for on-the-job skills

The Microsoft Azure Online Test helps recruiters and hiring managers identify qualified candidates from a pool of resumes, and helps in taking objective hiring decisions. It reduces the administrative overhead of interviewing too many candidates and saves time by filtering out unqualified candidates at the first step of the hiring process.

The test screens for the following skills that hiring managers look for in candidates:

  • Понимание основных вычислений
  • Возможность масштабировать и управлять виртуальными машинами Azure
  • Знание хостинга и разработки веб -и мобильных приложений на Azure
  • Условность в сетях принципов в Azure
  • Возможность работать с хранилищем Azure (Blob, Files, Table)
  • Понимание баз данных Azure (SQL, NOSQL, в памяти)
  • Знание лазурного хранилища данных
  • Возможность обеспечения безопасности и мониторинга в Azure
Reason #2

No trick questions

no trick questions

Traditional assessment tools use trick questions and puzzles for the screening, which creates a lot of frustration among candidates about having to go through irrelevant screening assessments.

View sample questions

The main reason we started Adaface is that traditional pre-employment assessment platforms are not a fair way for companies to evaluate candidates. At Adaface, our mission is to help companies find great candidates by assessing on-the-job skills required for a role.

Why we started Adaface
Try practice test
Reason #3

Non-googleable questions

We have a very high focus on the quality of questions that test for on-the-job skills. Every question is non-googleable and we have a very high bar for the level of subject matter experts we onboard to create these questions. We have crawlers to check if any of the questions are leaked online. If/ when a question gets leaked, we get an alert. We change the question for you & let you know.

How we design questions

Это лишь небольшая выборка из нашей библиотеки из более чем более 10000 вопросов. Фактические вопросы по этому поводу Онлайн -тест Microsoft Azure будет не подлежащим гугливым.

🧐 Question

Medium

Backup and Restore Strategy
Databases
Backup
Recovery
Try practice test
You are a database administrator for an organization that uses Azure SQL Database for its operations. The organization has a strict data retention policy and has set up the following backup strategy:

1. Full backups are taken every Sunday at midnight.
2. Differential backups are taken every day at midnight, excluding Sunday.
3. Transaction log backups are taken every hour on the hour.

On Wednesday at 2:30 PM, a failure occurred, and the latest backup files available are: full backup from the previous Sunday, differential backups for Monday and Tuesday, and transaction log backups up to Wednesday 2 PM.

In order to restore the database to the most recent point in time with the minimum amount of data loss, in what order should you restore the backups?
A: Restore the full backup, then the differential backup for Tuesday, then the differential backup for Wednesday, then each transaction log backup from midnight on Wednesday to 2 PM on Wednesday.

B: Restore the full backup, then the differential backup for Wednesday, then each transaction log backup from midnight on Wednesday to 2 PM on Wednesday.

C: Restore the full backup, then each differential backup from Monday and Tuesday, then each transaction log backup from midnight on Wednesday to 2 PM on Wednesday.

D: Restore the full backup, then the differential backup for Monday, then each transaction log backup from midnight on Monday to 2 PM on Wednesday.

E: Restore the full backup, then the differential backup for Tuesday, then each transaction log backup from midnight on Tuesday to 2 PM on Wednesday.

Medium

Resolving Connection Issues
Virtual Machines
Networking
Security
Try practice test
You are an Azure Administrator and you manage a Linux VM running an internal web application in Azure. The web application communicates with a database server hosted on another VM in the same Virtual Network (VNet).

Recently, users have reported that the web application is not accessible. After initial troubleshooting, you have identified that the web application VM is unable to establish a connection with the database server VM on port 5432.

You have checked and confirmed the following:

1. Both VMs are up and running without any issues.
2. Both VMs are located in the same VNet and subnet.
3. Both VMs can successfully ping each other.
4. A Network Security Group (NSG) is associated with the subnet, and it has a rule allowing all outbound traffic from the web application VM.
5. The NSG rule for inbound traffic to the database VM on port 5432 has a higher priority than the default deny all rule.

Given the information provided, what could be the most likely reason for the issue and the appropriate resolution?
A: Add a route table to the subnet to enable communication between the VMs.

B: The NSG rule priority for the inbound traffic to the database VM is not set correctly. Adjust the priority to be lower than the default rule.

C: Check if a firewall is enabled on the database VM that might be blocking the port. If so, configure it to allow connections on port 5432.

D: The issue is related to the DNS resolution. Update the DNS settings in the VNet to enable name resolution between the VMs.

E: The web application is not correctly configured to connect to the database. Update the connection string in the web application configuration.

Medium

Resolving NSG Configuration Issues
Virtual Machines
Security
Try practice test
You are an Azure Administrator in a software development company. A Linux VM is deployed on Azure, hosting an application server running on port 5000, set to start whenever the VM is booted up.

The VM is associated with a Network Security Group (NSG) having the following inbound security rules:

- Rule 100 (Priority: 100): Allow SSH (port 22) from any source
- Rule 200 (Priority: 200): Allow HTTP (port 80) from any source
- Rule 400 (Priority: 400): Allow TCP traffic on port 5000 from any source
- Rule 300 (Priority: 300): Deny all inbound traffic from any source

The outbound security rules are configured to allow all traffic to any destination.

Internal users have been attempting to connect to the application server on port 5000 but they are consistently facing connection timeouts. You've confirmed the application server is up and running, and you can connect to the server locally on the VM.

What is the most probable cause of the problem and how would you fix it?
A: The inbound rule to allow TCP traffic on port 5000 is conflicting with the rule to allow HTTP on port 80. Remove Rule 200.

B: Rule 300 to deny all inbound traffic is being processed before Rule 400 to allow traffic on port 5000. Modify the priority of Rule 400 to a value less than 300.

C: The application server should be configured to listen on a well-known port instead of port 5000. Change the server settings.

D: The NSG is missing an inbound rule to allow ICMP traffic. Add a new rule with a lower priority.

E: The NSG needs to have an outbound rule specifically allowing traffic to port 5000. Add a new outbound rule.
🧐 Question🔧 Skill

Medium

Backup and Restore Strategy
Databases
Backup
Recovery

2 mins

Azure
Try practice test

Medium

Resolving Connection Issues
Virtual Machines
Networking
Security

2 mins

Azure
Try practice test

Medium

Resolving NSG Configuration Issues
Virtual Machines
Security

2 mins

Azure
Try practice test
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Backup and Restore Strategy
Databases
Backup
Recovery
Azure
Medium2 mins
Try practice test
Resolving Connection Issues
Virtual Machines
Networking
Security
Azure
Medium2 mins
Try practice test
Resolving NSG Configuration Issues
Virtual Machines
Security
Azure
Medium2 mins
Try practice test
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

С помощью Adaface нам удалось оптимизировать первоначальный процесс отбора более чем на 75 %, высвободив драгоценное время как для менеджеров по найму, так и для нашей команды по привлечению талантов!


Brandon Lee, Глава отдела кадров, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Онлайн -тест Microsoft Azure in your hiring process is that it is an elimination tool, not a selection tool. In other words: you want to use the test to eliminate the candidates who do poorly on the test, not to select the candidates who come out at the top. While they are super valuable, pre-employment tests do not paint the entire picture of a candidate’s abilities, knowledge, and motivations. Multiple easy questions are more predictive of a candidate's ability than fewer hard questions. Harder questions are often "trick" based questions, which do not provide any meaningful signal about the candidate's skillset.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the Онлайн -тест Microsoft Azure from your dashboard by entering their email address.

Public link: You can create a public link for each test that you can share with candidates.

API or integrations: You can invite candidates directly from your ATS by using our pre-built integrations with popular ATS systems or building a custom integration with your in-house ATS.

invite candidates
Reason #7

Detailed scorecards & benchmarks

Reason #7

Detailed scorecards & benchmarks

Along with scorecards that report the performance of the candidate in detail, you also receive a comparative analysis against the company average and industry standards.

View sample scorecard
Try practice test
Reason #8

High completion rate

Adaface tests are conversational, low-stress, and take just 25-40 mins to complete.

This is why Adaface has the highest test-completion rate (86%), which is more than 2x better than traditional assessments.

test completion rate
Reason #9

Advanced Proctoring


Learn more

About the Microsoft Azure Assessment Test

Why you should use Pre-employment Microsoft Azure Online Test?

The Онлайн -тест Microsoft Azure makes use of scenario-based questions to test for on-the-job skills as opposed to theoretical knowledge, ensuring that candidates who do well on this screening test have the relavant skills. The questions are designed to covered following on-the-job aspects:

  • Основы облачных вычислений (IAAS; PaaS)
  • Виртуальные машины Azure (масштабирование; стратегия резервного копирования)
  • Хостинг и разработка веб -приложений и мобильных приложений
  • Сеть в Azure (виртуальные сети; подсеть; группа безопасности сети; DNS)
  • Azure Storage (Blob; файлы; таблица)
  • Базы данных Azure (SQL; NOSQL; в памяти)
  • Azure Data Warehousing
  • Безопасность и мониторинг Azure
  • Сценарий с PowerShell
  • Развертывание и управление виртуальными машинами в Azure

Once the test is sent to a candidate, the candidate receives a link in email to take the test. For each candidate, you will receive a detailed report with skills breakdown and benchmarks to shortlist the top candidates from your pool.

What topics are covered in the Microsoft Azure Online Test?

  • Основы облачных вычислений (IAAS; PaaS)

    Понимание оснований облачных вычислений, в частности, инфраструктура как услуги (IAAS) и платформы как услуга (PAAS), имеет важное значение в современном технологическом ландшафте. IAAS позволяет пользователям получить доступ к виртуализированным компьютерным ресурсам через Интернет, в то время как PaaS предоставляет платформу для разработки, тестирования и управления приложениями без необходимости управления инфраструктурой. Этот навык измеряется в тесте, чтобы оценить основополагающие знания кандидатов о облачных вычислениях и их способность различать виртуальные машины IAAS и PAAS. Виртуальные машины Azure (VMS) являются одним из наиболее распространенных и универсальных услуг в Microsoft Azure. Этот навык измеряется в тесте, чтобы оценить понимание кандидатов масштабирования виртуальных машин Azure для удовлетворения изменяющихся требований рабочей нагрузки и их способности проектировать и реализовать эффективные стратегии резервного копирования для виртуальных машин. Стратегии масштабирования и резервного копирования являются важными аспектами управления виртуальной машиной и обеспечения плавных операций в среде Azure.

  • Full list of covered topics

    The actual topics of the questions in the final test will depend on your job description and requirements. However, here's a list of topics you can expect the questions for Онлайн -тест Microsoft Azure to be based on.

    IAAS
    Паас
    Виртуальные машины лазурных
    Масштабирование
    Стратегия резервного копирования
    Хостинг веб -приложения
    Хостинг мобильных приложений
    Сеть в Azure
    Виртуальные сети
    Подсеть
    Сетевая группа безопасности
    DNS
    Лазурное хранилище
    Капля
    Файлы
    Стол
    Базы данных Azure
    SQL
    Nosql
    В памяти
    Azure Data Warehousing
    ЗАБОРОЖКА AZURE
    Мониторинг
Try practice test

What roles can I use the Microsoft Azure Online Test for?

  • Разработчик Azure
  • Старший разработчик Azure
  • Azure Solutions Architect
  • Администратор Azure
  • Инженер данных Azure
  • Старший инженер данных Azure
  • Инженер по инфраструктуре лазурной инфраструктуры
  • Инженер Azure DevOps

How is the Microsoft Azure Online Test customized for senior candidates?

For intermediate/ experienced candidates, we customize the assessment questions to include advanced topics and increase the difficulty level of the questions. This might include adding questions on topics like

  • Понимание менеджера ресурсов Azure и групп ресурсов
  • Настройка и управление виртуальными сетями Azure
  • Реализация балансировщика нагрузки Azure и Manager Traffice
  • Проектирование и реализация решений для хранения Azure
  • Развертывание и управление базами данных Azure SQL
  • Внедрение Azure App Service и веб -приложений
  • Создание и развертывание функций Azure
  • Внедрение Azure Active Directory и управление идентификационным доступом
  • Мониторинг ресурсов Azure с помощью монитора Azure
  • Оптимизация затрат и производительности в Azure
  • Использование Azure DevOps для трубопроводов CI/CD
Singapore government logo

Менеджеры по найму чувствовали, что с помощью технических вопросов, которые они задавали во время групповых собеседований, они могли определить, какие кандидаты имеют более высокие баллы, и отличиться от тех, кто не набрал таких же баллов. Они есть очень доволен с качеством кандидатов, включенных в шорт-лист отбора Adaface.


85%
Сокращение времени проверки

Microsoft Azure Hiring Test Часто задаваемые вопросы

Как тест настроен для старших инженеров по данным Azure?

Инженеры по обработке данных Azure оцениваются в основном по трем направлениям:

  • Базы данных Azure: база данных SQL, CosmosDB, хранилище данных.
  • Azure Analytics: Stream Analytics, HDInsight, Lake Analytics, Data Explorer, Databricks, Power BI, Фабрика данных.
  • Миграция Azure: восстановление сайта, миграция базы данных, миграция, проект миграции, DataBox

Вопросы для старших инженеров по данным Azure будут более высокого уровня сложности и сосредоточены на темах среднего и продвинутого уровня, таких как:

  • Основные концепции данных: реляционные, нереляционные, большие данные и аналитика.
  • Создание, планирование и мониторинг конвейеров Фабрики данных Azure.
  • Развертывание базы данных Elastic Pool и добавление/удаление баз данных из пула.
  • Развертывание баз данных управляемых экземпляров
  • Прием, управление и обслуживание данных с помощью службы Microsoft Azure Synapse Analytics.
  • Различия между традиционной, современной и синаптической архитектурой
  • Понимание архитектуры Azure MPP (массовая параллельная обработка).
  • Глубокое понимание внутренних концепций, таких как распределение данных, сегментирование и секционирование.
  • Передовые методы миграции и лучшие практики.
  • Миграция данных в хранилище данных SQL Azure с использованием SSIS, фабрики данных и PolyBase.
  • Создание учетных записей хранения Azure Data Lake Gen1, заполнение и анализ с помощью языка U-SQL.
  • Защита данных в хранилище BLOB-объектов с использованием URL-адресов SAS и политик жизненного цикла для архивирования данных с автоматическим изменением уровня.
  • Проектирование и управление конвейером сквозной загрузки данных.

Какие вопросы следует использовать для оценки младших разработчиков Azure?

Вопросы для новичков и младших разработчиков Azure будут иметь более низкие уровни сложности. Темы будут основаны на основах сервисов Azure, таких как:

  • Работа с Azure Compute: виртуальные машины, службы приложений, AKS, функции и многое другое.
  • Реализация сетевых технологий в Azure: виртуальные сети, подсети, NSG, шлюз приложений.
  • Управление ресурсами данных в Azure — Azure SQL, MySQL, CosmosDB, хранилище.
  • Управление аутентификацией с помощью Azure AD.
  • Основы ценообразования и расчета стоимости Azure.

Как оцениваются навыки работы с Azure и SQL?

Мы поддерживаем оценку нескольких навыков в одном тесте. Если эта роль требует от кандидатов понимания SQL и опыта управления базами данных SQL в Azure, вопросы будут сосредоточены на навыках SQL и Azure. Точная пропорция SQL, Azure и подтем выбирается на основе описания вашей вакансии. Вот соответствующие темы, на которых будут основаны вопросы:

  • Основы SQL (базы данных, таблицы)
  • SQL-запросы CRUD
  • Создание и управление базой данных Azure для сервера MySQL.
  • Миграция локальных баз данных в SQL Azure.
  • Экспорт и импорт баз данных.
  • Управление базами данных корпоративного уровня в Azure SQL (резервное копирование, восстановление, защита и масштабирование)
  • Настройка аудита базы данных SQL.
  • Развертывание эластичных пулов базы данных SQL Azure.
  • Доступ к виртуальной машине Azure SQL Server с помощью RDP, SSMS и Azure Data Studio.

Могу ли я объединить несколько навыков в одну пользовательскую оценку?

Да, конечно. Пользовательские оценки настроены на основе вашей должности и будут включать вопросы по всем необходимым навыкам, которые вы указываете.

Есть ли у вас какие-либо функции против Chating или Proctoring?

У нас есть следующие функции антихиализации:

  • Необъемлющие вопросы
  • IP Proctoring
  • Веб -прокторинг
  • Веб -камера Proctoring
  • Обнаружение плагиата
  • Безопасный браузер

Узнайте больше о функциях Proctoring.

Как мне интерпретировать результаты тестов?

Основная вещь, которую нужно помнить, это то, что оценка - это инструмент устранения, а не инструмент отбора. Оценка навыков оптимизирована, чтобы помочь вам устранить кандидатов, которые технически не имеют квалификации для этой роли, она не оптимизирована, чтобы помочь вам найти лучшего кандидата на роль. Таким образом, идеальный способ использования оценки - определить пороговый балл (обычно 55%, мы помогаем вам сравнить) и пригласить всех кандидатов, которые забивают выше порога для следующих раундов интервью.

На каком уровне опыта я могу использовать этот тест?

Каждая оценка Adaface настроена на ваш инструкции/ Идеальный кандидат (наши эксперты по предметам выберут правильные вопросы для вашей оценки из нашей библиотеки из 10000+ вопросов). Эта оценка может быть настроена для любого уровня опыта.

Каждый кандидат получает одинаковые вопросы?

Да, вам намного проще сравнить кандидатов. Варианты для вопросов MCQ и порядок вопросов рандомизированы. У нас есть против Chating/Proctoring. В нашем плане предприятия у нас также есть возможность создать несколько версий одной и той же оценки с вопросами аналогичных уровней сложности.

Я кандидат. Могу я попробовать практический тест?

Нет. К сожалению, в данный момент мы не поддерживаем практические тесты. Тем не менее, вы можете использовать наши примерные вопросы для практики.

Какова стоимость использования этого теста?

Вы можете проверить наши планы ценообразования.

Могу я получить бесплатную пробную версию?

Да, вы можете зарегистрироваться бесплатно и предварительно просмотрите этот тест.

Я только что перешел к платному плану. Как я могу запросить пользовательскую оценку?

Вот краткое руководство по Как запросить пользовательскую оценку на Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Попробуйте сегодня наиболее кандидатский инструмент оценки навыков.
g2 badges
Ready to use the Adaface Онлайн -тест Microsoft Azure?
Ready to use the Adaface Онлайн -тест Microsoft Azure?
Поболтай с нами
logo
40 min tests.
No trick questions.
Accurate shortlisting.
Условия Конфиденциальность Доверие

🌎 Выберите свой язык

English Norsk Dansk Deutsche Nederlands Svenska Français Español Chinese (简体中文) Italiano Japanese (日本語) Polskie Português Russian (русский)
ada
Ada
● Online
✖️