We have the House model with the following fields: street, house_number:
class House(models.Model):
house_number = models.IntegerField()
street = models.CharField(max_length=64)Select all the correct answers for using the count method in this model.