ExamGecko
Home Home / Microsoft / DP-900

Microsoft DP-900 Practice Test - Questions Answers, Page 20

Question list
Search
Search

Related questions











Your company recently reported sales from the third quarter.

You have the chart shown in the following exhibit.

Which type of analysis is shown in the fourth quarter?

A.
predictive
A.
predictive
Answers
B.
prescriptive
B.
prescriptive
Answers
C.
descriptive
C.
descriptive
Answers
D.
diagnostic
D.
diagnostic
Answers
Suggested answer: A

Explanation:

Predictive, to answer the question: What will happen?

Reference:

https://demand-planning.com/2020/01/20/the-differences-between-descriptive-diagnostic-predictive-cognitive-analytics/

https://azure.microsoft.com/en-us/blog/answering-whats-happening-whys-happening-and-what-will-happen-with-iot-analytics/

Which statement is an example of Data Manipulation Language (DML)?

A.
REVOKE
A.
REVOKE
Answers
B.
DISABLE
B.
DISABLE
Answers
C.
CREATE
C.
CREATE
Answers
D.
UPDATE
D.
UPDATE
Answers
Suggested answer: D

Explanation:

Data Manipulation Language (DML) affect the information stored in the database. Use these statements to insert, update, and change the rows in the database.

BULK INSERT

DELETE

INSERT

SELECT

UPDATE

MERGE

Reference:

https://docs.microsoft.com/en-us/sql/t-sql/statements/statements

Which statement is an example of Data Definition Language (DDL)?

A.
SELECT
A.
SELECT
Answers
B.
INSERT
B.
INSERT
Answers
C.
DELETE
C.
DELETE
Answers
D.
DROP
D.
DROP
Answers
Suggested answer: D

Explanation:

Data Definition Language (DDL) statements defines data structures. Use these statements to create, alter, or drop data structures in a database. These statements include:

ALTER

Collations

CREATE

DROP

DISABLE TRIGGER

ENABLE TRIGGER

RENAME

UPDATE STATISTICS

TRUNCATE TABLE

Reference:

https://docs.microsoft.com/en-us/sql/t-sql/statements/statements

A team of developers has computers that run Windows 10 and Ubuntu Desktop.

The developers need to connect to and query an Azure SQL database from each of their computers. The developers require code assistance features such as IntelliSense.

What should the developers use?

A.
sqlcmd
A.
sqlcmd
Answers
B.
Microsoft SQL Server Management Studio (SSMS)
B.
Microsoft SQL Server Management Studio (SSMS)
Answers
C.
Azure Data Studio
C.
Azure Data Studio
Answers
D.
Azure Data Explorer
D.
Azure Data Explorer
Answers
Suggested answer: C

Explanation:

Azure Data Studio is a cross-platform database tool for data professionals who use on-premises and cloud data platforms on Windows, macOS, and Linux.

Azure Data Studio offers a modern editor experience with IntelliSense, code snippets, source control integration, and an integrated terminal.

Reference:

https://docs.microsoft.com/en-us/sql/azure-data-studio/download-azure-data-studio

You need to store data by using Azure Table storage.

What should you create first?

A.
an Azure Cosmos DB instance
A.
an Azure Cosmos DB instance
Answers
B.
a storage account
B.
a storage account
Answers
C.
a blob container
C.
a blob container
Answers
D.
a table
D.
a table
Answers
Suggested answer: B

Explanation:

First create an Azure storage account, then use Table service in the Azure portal to create a table.

Note: An Azure storage account contains all of your Azure Storage data objects: blobs, files, queues, and tables.

Reference:

https://docs.microsoft.com/en-us/azure/storage/tables/table-storage-quickstart-portal

https://docs.microsoft.com/en-us/azure/storage/common/storage-account-create

You need to recommend a data store service that meets the following requirements:

Native SQL API access

Configurable indexes

What should you recommend?

A.
Azure Files
A.
Azure Files
Answers
B.
Azure Blob storage
B.
Azure Blob storage
Answers
C.
Azure Table storage
C.
Azure Table storage
Answers
D.
Azure Cosmos DB
D.
Azure Cosmos DB
Answers
Suggested answer: D

Explanation:

Azure Cosmos DB comes with native Core (SQL) API support.

In Azure Cosmos DB, data is indexed following indexing policies that are defined for each container. The default indexing policy for newly created containers enforces range indexes for any string or number. This policy can be overridden with your own custom indexing policy.

Reference:

https://docs.microsoft.com/en-us/azure/cosmos-db/sql/how-to-manage-indexing-policy

Your company needs to design a database that illustrates the relationships between utilization levels of individual network devices across a local area network.

Which type of data store should you use?

A.
graph
A.
graph
Answers
B.
key/value
B.
key/value
Answers
C.
document
C.
document
Answers
D.
columnar
D.
columnar
Answers
Suggested answer: A

Explanation:

Data as it appears in the real world is naturally connected. Traditional data modeling focuses on defining entities separately and computing their relationships at runtime. While this model has its advantages, highly connected data can be challenging to manage under its constraints.

A graph database approach relies on persisting relationships in the storage layer instead, which leads to highly efficient graph retrieval operations. Azure Cosmos DB's Gremlin API supports the property graph model.

Reference:

https://docs.microsoft.com/en-us/azure/cosmos-db/graph-introduction#introduction-to-graph-databases

What are three characteristics of an Online Transaction Processing (OLTP) workload? Each correct answer presents a complete solution. (Choose three.)

NOTE: Each correct selection is worth one point.

A.
denormalized data
A.
denormalized data
Answers
B.
heavy writes and moderate reads
B.
heavy writes and moderate reads
Answers
C.
light writes and heavy reads
C.
light writes and heavy reads
Answers
D.
schema defined in a database
D.
schema defined in a database
Answers
E.
schema defined when reading unstructured data from a database
E.
schema defined when reading unstructured data from a database
Answers
F.
normalized data
F.
normalized data
Answers
Suggested answer: B, D, F

Explanation:

B: Transactional data tends to be heavy writes, moderate reads.

D: Typical traits of transactional data include: schema on write, strongly enforced. The schema is defined in a database.

F: Transactional data tends to be highly normalized.

Reference:

https://docs.microsoft.com/en-us/azure/architecture/data-guide/relational-data/online-transaction-processing

What is the primary purpose of a data warehouse?

A.
to provide answers to complex queries that rely on data from multiple sources
A.
to provide answers to complex queries that rely on data from multiple sources
Answers
B.
to provide transformation services between source and target data stores
B.
to provide transformation services between source and target data stores
Answers
C.
to provide read-only storage of relational and non-relational historical data
C.
to provide read-only storage of relational and non-relational historical data
Answers
D.
to provide storage for transactional line-of-business (LOB) applications
D.
to provide storage for transactional line-of-business (LOB) applications
Answers
Suggested answer: C

Explanation:

Consider using a data warehouse when you need to keep historical data separate from the source transaction systems for performance reasons. Data warehouses make it easy to access historical data from multiple locations, by providing a centralized location using common formats, keys, and data models.

Query both relational and nonrelational data.

Incorrect Answers:

D: Data warehouses don't need to follow the same terse data structure you may be using in your OLTP databases.

Reference:

https://docs.microsoft.com/en-us/azure/architecture/data-guide/relational-data/data-warehousing

You need to create an Azure resource to store data in Azure Table storage.

Which command should you run?

A.
az storage share create
A.
az storage share create
Answers
B.
az storage account create
B.
az storage account create
Answers
C.
az cosmosdb create
C.
az cosmosdb create
Answers
D.
az storage container create
D.
az storage container create
Answers
Suggested answer: D

Explanation:

Reference:

https://docs.microsoft.com/en-us/cli/azure/storage/container?view=azure-cli-latest

Total 285 questions
Go to page: of 29