Test your basic knowledge |

Django Queryset

Subject : it-skills
Instructions:
  • Answer 50 questions in 15 minutes.
  • If you are not ready to take this test, you can study here.
  • Match each statement with the correct term.
  • Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.

This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. This field is added automatically - but this behavior can be overridden






2. Lookup type that returns results with a case-insensitive start sequence.






3. A QuerySet is iterable - and it executes its database query the first time you iterate over it.






4. This query finds all entries with an id in the list [1 - 3 - 4]






5. This model type is useful if you only want to modify the Python-level behavior of a model - without changing the models fields in any way. This creates a stand-in for the original model. You can create - delete and update instances of this new model






6. This is a criterion that narrow down a QuerySet based on given parameters.






7. This method immediately deletes the object and has no return value.






8. Fields are specified by these






9. Performs an SQL delete query on all rows in the QuerySet. This method is applied instantly. You cannot call this method on a QuerySet that has had a slice taken or can otherwise no longer be filtered.






10. Lookup type that returns results greater than a given value.






11. The default for this is the name of the child class followed by '_set'.






12. Specifies the model that will be used to govern the many-to-many relationship. You can then put extra fields on the intermediate model. The intermediate model is associated with the ManyToManyField using this to point to the model that will act as an






13. Here - you can't use add - create - or assignment (i.e. - beatles.members = [...]) to create relationships. You need to specify all the detail for the relationship required by the intermediate model.






14. Performs an SQL update query for the specified fields - and returns the number of rows affected. This method is applied instantly and the only restriction on the QuerySet that is updated is that it can only update columns in the model's main table. F






15. This method returns tuples of values when iterated over. Each tuple contains the value from the respective field passed into the call to this method -- so the first item is the first field - etc.






16. Returns a QuerySet that will automatically "follow" foreign-key relationships - selecting that additional related-object data when it executes its query. This is a performance booster which results in (sometimes much) larger queries but means later u






17. Conjuntion operator for Q objects.






18. Lookup type that returns results greater than or equal to a given value.






19. Returns a new QuerySet containing objects that match the given lookup parameters.






20. This model method is used for updating a ManyToManyField.






21. Used to get a QuerySet for a model. This is called 'objects' by default.






22. Lookup type that returns results with a case-insensitive end sequence.






23. Exception raised by get(**kwargs) if no items match the query.






24. Evaluates the QuerySet (by performing the query) and returns an iterator over the results. A QuerySet typically caches its results internally so that repeated evaluations do not result in additional queries; this method will instead read results dire






25. Returns an integer representing the number of objects in the database matching the QuerySet. This never raises exceptions.






26. A convenience method for looking up an object with the given kwargs - creating one if necessary.






27. If this option is True - Django will store empty values as NULL in the database. Default is False.






28. If you pickle a QuerySet - this will force all the results to be loaded into memory prior to pickling. When you unpickle a QuerySet - it contains the results at the moment it was pickled - rather than the results that are currently in the database.






29. A manager method which returns a single object. If there are no results that match the query - this method will raise a DoesNotExist exception. If more than one item matches this query - the method will raise MultipleObjectsReturned.






30. Can be used to remove all many-to-many relationships for an instance






31. Returns a ValuesQuerySet -- a QuerySet that returns dictionaries when used as an iterable - rather than model-instance objects.






32. This style of inheritanc is useful when you're subclassing an existing model (perhaps something from another application entirely) and want each model to have its own database table. Here - each model in the hierarchy is a model all by itself.






33. A Python "magic method" that returns a unicode "representation" of any object.






34. A convenience method for constructing an object and saving it all in one step.






35. Defined by a ManyToManyField. You use it just like any other Field type: by including it as a class attribute of your model.






36. If you are using this attribute on a ForeignKey or ManyToManyField - you must always specify a unique reverse name for the field.






37. This query finds all entries with an id greater than 4.






38. Defines a many-to-one relationship. ou use it just like any other Field type: by including it as a class attribute of your model.






39. This sets a field to a particular value for all the objects in a QuerySet. You can only set non-relation fields and ForeignKey fields using this method.






40. Lookup type that returns results with a case-sensitive end sequence.






41. This class type is useful when you just want to use the parent class to hold information that you don't want to have to type out for each child model. This class isn't going to ever be used in isolation. When it is used as a base class for other mode






42. restrictions on ________: (1) Your intermediate model must contain one - and only one - foreign key to the target model. (2) Your intermediate model must contain one - and only one - foreign key to the source model. (3) When defining a many-to-many r






43. Takes a list of primary-key values and returns a dictionary mapping each primary-key value to an instance of the object with the given ID.






44. To activate your models






45. Sometimes - the Django query syntax by itself can't easily express a complex WHERE clause. For these edge cases - Django provides this QuerySet modifier -- a hook for injecting specific clauses into the SQL generated by a QuerySet.






46. Adds to each object in the QuerySet with the provided list of aggregate values (averages - sums - etc) that have been computed over the objects that are related to the objects in the QuerySet. Each argument to this is content that will be added to ea






47. Defines a many-to-many relationship. You use it just like any other Field type: by including it as a class attribute of your model.






48. Lookup type that yields an "exact" match. If you don't provide a lookup type -- that is - if your keyword argument doesn't contain a double underscore -- the lookup type is assumed to be of this sort.






49. In some complex data-modeling situations - your models might contain a lot of fields - some of which could contain a lot of data (for example - text fields) - or require expensive processing to convert them to Python objects. If you are using the res






50. By default - results returned by a QuerySet are ordered by the ordering tuple given by the ordering option in the model's Meta. You can override this on a per-QuerySet basis by using the this method.







Sorry!:) No result found.

Can you answer 50 questions in 15 minutes?


Let me suggest you:



Major Subjects



Tests & Exams


AP
CLEP
DSST
GRE
SAT
GMAT

Most popular tests