DP-420 Exam Question 11

You plan to create an Azure Cosmos DB account that will use the NoSQL API.
You need to create a grouping strategy for items that will be stored in the account. The solution must ensure that write and read operations on the items can be performed within the same transact!
What should you use to group the items?
  • DP-420 Exam Question 12

    You have an Azure Cosmos DB Core (SQL) API account.
    You run the following query against a container in the account.
    SELECT
    IS_NUMBER("1234") AS A,
    IS_NUMBER(1234) AS B,
    IS_NUMBER({prop: 1234}) AS C
    What is the output of the query?
  • DP-420 Exam Question 13

    You have a container named container! in an Azure Cosmos DB for NoSQL account.
    You need to provide a user named User1 with the ability to insert items into container1 by using role-based access The solution must use the principle of least privilege.
    Which roles should you assign to User1?
  • DP-420 Exam Question 14

    You are developing an application that will connect to an Azure Cosmos DB for NoSQL account. The account has a single readme region and one agonal read region. The regions are configured for automatic failover.
    The account has the following connect strings. (Line numbers are included for reference only.)

    For each of the following statements, select Yes if the statement is true. otherwise, select No.
    NOTE: Each correct selection is worth one point.

    DP-420 Exam Question 15

    You have a database in an Azure Cosmos DB for NoSQL account that is configured for multi-region writes.
    You need to use the Azure Cosmos DB SDK to implement the conflict resolution policy for a container. The solution must ensure that any conflict sent to the conflict feed.
    Solution: You set ConfilictResolutionMode to Custom. You Set ResolutionProcedures to a custom stored procedure. You configure the custom stored procedure to use the isTomstone parameter to resolve conflict.
    Does this meet the goal?