Question 16

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?
  • Question 17

    The following is a sample of a document in orders.

    The orders container uses customerId as the partition key.
    You need to provide a report of the total items ordered per month by item type. The solution must meet the following requirements:
    Ensure that the report can run as quickly as possible.
    Minimize the consumption of request units (RUs).
    What should you do?