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.

  1. request.META; FileField
  2. request.FILES; BLOBField
  3. request.FILES; FileField
  4. request.META.Files; CLOBField

Answer: The correct answer of the above question is Option C:request.FILES; FileField