Q.1.
Which of the following is not a part of Cassandra architecture?
Q.2.
Mongo looks for a database server listening on port
Q.3.
Initial release of MongoDB was in the year?
Q.4.
Which command in Mongodb is equivalent to SQL select?
Q.5.
Point out the correct statement :
Q.6.
MongoDB supports query joins between collections.
Q.7.
What is the maximum size of a MongoDB document?
Q.8.
Which is not a supported index type in MongoDB?
Q.9.
Which of the following line skips the first 5 documents in the bios collection and returns all remaining documents?
Q.10.
Does MongoDB supports query joins between collections ?
Q.11.
Which command returns all of the documents in the customers collection?
Q.12.
How do you find documents with a matching item in an embedded array?
Q.13.
One of the documents in your collection has an _id based upon an older database design and you want to change it. You write an update command to find the document and replace the _id but the _id isn’t changed. How should you fix the issue?
Q.14.
Which programming language is used to write MongoDB queries? (Alternative: In the MongoDB shell, what programming language is used to make queries?)
Q.15.
You have two text fields in your document and you’d like both to be quickly searchable. What should you do?
Q.16.
Given an ObjectId in _id, how do you get the time it was created?
Q.17.
Suppose your aggregation pipeline terminated with an exception referring to exceeded memory limit. What is the best way to resolve the issue?
Q.18.
You have just secured your previously unsecured MongoDB server, but the server is still not requiring authentication. What is the best option?
Q.19.
Is MongoDB better than other SQL databases?
Q.20.
Which of the following method corresponds to Order by clause in SQL?