Google News
logo
MongoDB - Quiz(MCQ)
_________ terminates an operation as specified by the operation ID.
A)
db.kill()
B)
db.remove()
C)
db.killOp()
D)
None of the above

Correct Answer :   db.killOp()


Explanation : Only use db.killOp() to terminate operations initiated by clients and do not terminate internal database operations.

Advertisement