Question: What is the correct query to find all of the people who have a home phone number defined?
- `db.person.find({exists: 'homePhone'});`
- `db.person.exists({homePhone: true});`
- `db.person.find({homePhone: {$exists: true}});`
- `db.person.has('homePhone');`
Answer: The correct answer of the above question is Option C:`db.person.find({homePhone: {$exists: true}});`