Question: You are uploading a file to Django from a form and you want to save the received file as a field on a model object. You can simply assign the file object from**\_to a field of type\_\_**in the model.
- request.META; FileField
- request.FILES; BLOBField
- request.FILES; FileField
- request.META.Files; CLOBField
Answer: The correct answer of the above question is Option C:request.FILES; FileField