Google News
logo
ArangoDB - Quiz(MCQ)
Which of the following method is used to drop the database?
A)
db._drop(name)
B)
db._dropDb(name)
C)
db._dropDatabase(name)
D)
None of the above

Correct Answer :   db._dropDatabase(name)


Explanation : db._dropDatabase(name) method is used to drop the database.

Advertisement