Complete the code to chain two querysets using the correct method.
combined = queryset1.[1](queryset2)The union() method combines two querysets into one without duplicates.
Complete the code to chain querysets and remove duplicates.
result = queryset1.[1](queryset2).distinct()The union() method combines querysets and distinct() removes duplicates.
Fix the error in chaining querysets with different models.
combined = queryset1.[1](queryset2)union() can combine querysets only if they have the same fields and model structure.
Fill both blanks to chain querysets and order the result by 'name'.
result = queryset1.[1](queryset2).[2]('name')
Use union() to combine querysets and order_by('name') to sort the result by the 'name' field.
Fill all three blanks to chain querysets, filter by active status, and order by 'created_at'.
result = queryset1.[1](queryset2).[2](active=True).[3]('created_at')
First combine querysets with union(), then filter active items with filter(active=True), and finally sort by created_at using order_by().