

InterviewSolution
Saved Bookmarks
1. |
_________ terminates an operation as specified by the operation ID.(a) db.killOp()(b) db.kill()(c) db.remove()(d) none of the mentioned |
Answer» The correct answer is (a) db.killOp() The best explanation: Only use db.killOp() to terminate operations initiated by clients and do not terminate internal database operations. |
|