MS Knowledge Check Flashcards

Some of the Microsoft knowledge check questions.

1
Q

How is data in a relational table organized?

A

Rows and Columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an index?

A

A structure that enables you to locate rows in a table quickly, using an indexed value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

You are building a system that monitors the temperature throughout a set of office blocks, and sets the air conditioning in each room in each block to maintain a pleasant ambient temperature. Your system has to manage the air conditioning in several thousand buildings spread across the country or region, and each building typically contains at least 100 air-conditioned rooms. What type of NoSQL data store is most appropriate for capturing the temperature data to enable it to be processed quickly?

A

A key-value store.

A key-value store can ingest large volumes of data rapidly. A thermometer in each room can send the data to the database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is data ingestion?

A

Capturing raw data streaming from various sources and storing it.

The purpose of data ingestion is to receive raw data and save it as quickly as possible. The data can then be processed and analyzed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

When using an Azure SQL Database managed instance, what is the simplest way to implement backups?

A

Backups are automatically handled.

A managed instance comes with the benefit of automatic backups and the ability to restore to a point in time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the best way to transfer the data in a PostgreSQL database running on-premises into a database running Azure Database for PostgreSQL service?

A

Use the Azure Database Migration Services.

The Database Migration Service offers the safest way to push your on-premises PostgreSQL database into Azure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the elements of an Azure Table storage key?

A

Partition key and row key

The partition key identifies the partition in which a row is located, and the rows in each partition are stored in row key order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

When should you use a block blob, and when should you use a page blob?

A

Use a page blob for blobs that require random read and write access. Use a block blob for discrete objects that change infrequently.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Why might you use Azure File storage?

A

To enable users at different sites to share files.

You can create a file share in Azure File storage, upload files to this file share, and grant access to the file share to remote users.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

You are building a system that monitors the temperature throughout a set of office blocks, and sets the air conditioning in each room in each block to maintain a pleasant ambient temperature. Your system has to manage the air conditioning in several thousand buildings spread across the country/region, and each building typically contains at least 100 air-conditioned rooms. What type of NoSQL data store is most appropriate for capturing the temperature data to enable it to be processed quickly?

A

Send the data to an Azure Cosmos DB database and use Azure Functions to process the data.

Cosmos DB can ingest large volumes of data rapidly. A thermometer in each room can send the data to a Cosmos DB database. You can arrange for an Azure Function to run as each item is stored. The function can examine the temperature, and kick off a remote process to configure the air conditioning in the room.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is provisioning?

A

The act of running series of tasks that a service provider performs to create and configure a service.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a security principal?

A

An object that represents a user, group, service, or managed identity that is requesting access to Azure resources.

Azure authentication uses security principal to help determine whether a request to access a service should be granted.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the common flow of activity in Power BI?

A

Bring data into Power BI Desktop and create a report, share it to the Power BI service, view and interact with reports and dashboards in the service and Power BI mobile.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

A collection of ready-made visuals, pre-arranged in dashboards and reports is called what in Power BI?

A

An app is a collection of ready-made visuals, pre-arranged in dashboards and reports. You can get apps that connect to many online services from the AppSource.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

You have a large amount of data held in files in Azure Data Lake storage. You want to retrieve the data in these files and use it to populate tables held in Azure Synapse Analytics. Which processing option is most appropriate?

A

Synapse SQL pool. You can use PolyBase from a SQL pool to connect to the files in Azure Data Lake as external tables, and then ingest the data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which of the components of Azure Synapse Analytics allows you to train AI models using AzureML?

A

Synapse Spark. You would use a notebook to ingest and shape data, and then use SparkML and AzureML to train models with it.

17
Q

In Azure Databricks how do you change the language a cell uses?

A

The first line in the cell is %language. For example, %scala.