Kizspy | Question: 33
(Choose 1 answer)
Which of the following will implicitly create the collection testData?
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
FUOV