exam questions

Exam AZ-303 All Questions

View all questions & answers for the AZ-303 exam

Exam AZ-303 topic 4 question 2 discussion

Actual exam question from Microsoft's AZ-303
Question #: 2
Topic #: 4
[All AZ-303 Questions]

Your company plans to develop an application that will use a NoSQL database. The database will be used to store transactions and customer information by using
JSON documents.
Which two Azure Cosmos DB APIs can developers use for the application? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

  • A. Gremlin (graph)
  • B. MongoDB
  • C. Cassandra
  • D. Core (SQL)
  • E. Azure Table
Show Suggested Answer Hide Answer
Suggested Answer: BD 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
AustinY
Highly Voted 4 years, 2 months ago
This is from Az-303 Exam Manual: Azure Cosmos DB currently provides the following APIs in general availability (GA). ■   Core (SQL) API and MongoDB API for JSON document data. ■   Cassandra for a columnar or column-family datastore. ■   Azure Table API for key-value datastore. ■   Gremlin (graph) API for graph data.
upvoted 57 times
ahorva
3 years, 3 months ago
Correct A D https://docs.microsoft.com/en-us/azure/cosmos-db/faq#can-i-use-multiple-apis-to-access-my-data-
upvoted 4 times
JayBee65
3 years, 2 months ago
Gremlin is for graphs! A is obviously wrong
upvoted 1 times
...
azurelearner666
3 years, 3 months ago
Wrong! It's B & D B - MongoDB (JSON) D - Core (JSON) Austin is right, do not respond if you are not 100% sure, it just makes this confusing!
upvoted 2 times
...
...
lupuscon
4 years, 1 month ago
It is very difficult to verify this information, this information is neither in my AZ-303 nor AZ-304 course material and the only google search result for any of those lines is this examtopics discussion.
upvoted 1 times
...
hsmapple
4 years ago
Core (SQL) and Mongo DB API according to MS Learn: https://docs.microsoft.com/en-us/learn/modules/choose-api-for-cosmos-db/2-identify-the-technology-options
upvoted 5 times
...
a_r_c
3 years, 12 months ago
Answer should be B & D
upvoted 15 times
Alasmindas
3 years, 11 months ago
B is wrong
upvoted 1 times
TheAzureArchitect
3 years, 5 months ago
I'm afraid it's you who are wrong in this case.
upvoted 4 times
...
...
...
...
azurecert2021
Highly Voted 4 years, 3 months ago
given answer is correct as per below link zure Cosmos DB is Microsoft's globally distributed, multi-model database service. Where multi-model means Azure Cosmos DB supports multiple APIs and multiple data models, different APIs use different data formats for storage and wire protocol. For example, SQL uses JSON, MongoDB uses BSON, Table uses EDM, Cassandra uses CQL, Gremlin uses JSON format. Each API operates independently, except the Gremlin and SQL API, which are interoperable. https://docs.microsoft.com/en-us/azure/cosmos-db/faq
upvoted 39 times
pentium75
3 years, 9 months ago
MongoDB may use BSON internally, but you can use JSON with the MongoDB API for CosmosDB ...
upvoted 2 times
...
...
RPADMAN
Most Recent 2 years, 4 months ago
Keyword is "JSON" API. Look below Azure Cosmos DB is Microsoft's globally distributed, multi-model database service. Where multi-model means Azure Cosmos DB supports multiple APIs and multiple data models, different APIs use different data formats for storage and wire protocol. For example, SQL uses JSON, MongoDB uses BSON, Table uses EDM, Cassandra uses CQL, Gremlin uses JSON format. As a result, we recommend using the same API for all access to the data in a given account. Each API operates independently, except the API for Gremlin and NoSQL, which are interoperable.
upvoted 1 times
...
kanweng
3 years, 1 month ago
Selected Answer: BD
if we say MongoDB uses BSON. then, Choosing Gremlin as the API provides a graph-based view over the data. Remember that at the lowest level, all data in any Azure Cosmos DB is stored in an ARS format (Results will be returned in GraphSON format, ). So A is not right. https://docs.microsoft.com/en-us/learn/modules/choose-api-for-cosmos-db/2-identify-the-technology-options
upvoted 1 times
...
[Removed]
3 years, 1 month ago
Selected Answer: BD
B & D is correct answer
upvoted 1 times
...
AD3
3 years, 2 months ago
AD is correct as the question clearly asks for JSON. Here are the protocols : Azure Cosmos DB supports multiple APIs and multiple data models, different APIs use different data formats for storage and wire protocol. For example, SQL uses JSON, MongoDB uses BSON, Table uses EDM, Cassandra uses CQL, Gremlin uses JSON format. As a result, we recommend using the same API for all access to the data in a given account. Each API operates independently, except the Gremlin and SQL API, which are interoperable. READ : https://docs.microsoft.com/en-us/azure/cosmos-db/faq
upvoted 1 times
...
valgaw
3 years, 3 months ago
Selected Answer: BD
Mongo and Core SQL Mongo: https://docs.mongodb.com/guides/server/introduction/ In MongoDB, data is stored as documents. These documents are stored in MongoDB in JSON (JavaScript Object Notation) format. JSON documents support embedded fields, so related data and lists of data can be stored with the document instead of an external table.
upvoted 3 times
...
davignola
3 years, 3 months ago
Selected Answer: BD
B and D, used it in a real life scenario
upvoted 3 times
...
Dawn7
3 years, 3 months ago
Selected Answer: BD
I think B&D are correct
upvoted 1 times
...
Dawn7
3 years, 3 months ago
Selected Answer: BD
I will go with B&D
upvoted 2 times
...
plmmsg
3 years, 3 months ago
B. MongoDB & D. Core SQL
upvoted 1 times
...
donathon
3 years, 5 months ago
Only Gremlin and SQL can support JSON.
upvoted 2 times
TheAzureArchitect
3 years, 5 months ago
Gremlin is for Graph applications. B and D correct here.
upvoted 1 times
...
...
Abhishek1950
3 years, 5 months ago
Answer should be B & D
upvoted 2 times
...
syu31svc
3 years, 8 months ago
Core (SQL) - Core (SQL) is the default API for Azure Cosmos DB, which provides you with a view of your data that resembles a traditional NoSQL document store. You can query the hierarchical JSON documents with a SQL-like language. MongoDB - The data is stored in document format, which is the same as using Core (SQL). https://docs.microsoft.com/en-us/learn/modules/choose-api-for-cosmos-db/2-identify-the-technology-options B and D are correct
upvoted 4 times
...
WChandra
3 years, 9 months ago
https://docs.microsoft.com/en-us/azure/cosmos-db/faq Can I use multiple APIs to access my data? For example, SQL uses JSON, MongoDB uses BSON, Table uses EDM, Cassandra uses CQL, Gremlin uses JSON format. As a result, we recommend using the same API for all access to the data in a given account.
upvoted 1 times
...
AAPaul
3 years, 9 months ago
I had this question in the exam that i took on July 14th 2021
upvoted 2 times
...
goTEXANS
3 years, 9 months ago
Answer should be B & D Answer should be A & D https://docs.microsoft.com/en-us/azure/cosmos-db/faq Azure Cosmos DB is Microsoft's globally distributed, multi-model database service. Where multi-model means Azure Cosmos DB supports multiple APIs and multiple data models, different APIs use different data formats for storage and wire protocol. For example, SQL uses JSON, MongoDB uses BSON, Table uses EDM, Cassandra uses CQL, Gremlin uses JSON format. As a result, we recommend using the same API for all access to the data in a given account. Each API operates independently, except the Gremlin and SQL API, which are interoperable.
upvoted 1 times
medi01
3 years, 8 months ago
Uh, check the next question. It's Mongo and Core only.
upvoted 1 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago