This course will be retired on July 14, 2025.

Well done!

You have completed Hash Codes and Object Equality!

Quiz Question 1 of 5

Which expression is likely to be true about the two Department objects?

class Department
{
    public int Id { get; set; }
    public string Name { get; set; }
}

Department dept1 = new Department();
Department dept2 = new Department();

Choose the correct answer below:

Skip Quiz Review Video