Which of the following will implicitly create the collection testData?
(Choose1answer)
A. while (var i = 1; i <= 25; i++){
db.testData.insert({x:i})
}
B. for (var i = 1; i <= 25; i++)
{ db.testData.insert({x:i})
}
C. for (var i = 1; i <= 25; i++){
db.testData.inserts({x:i})}
D. None of the mentioned
ORi
Q: 47