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 method is for controlling which database the QuerySet will be evaluated against if you are using more than one database. The only argument this method takes is the alias of a database - as defined in DATABASES.






2. Lookup type for date/datetime fields that finds a 'day of the week' match.






3. Returns a copy of the current QuerySet (or QuerySet subclass you pass in). This can be useful in some situations where you might want to pass in either a model manager or a QuerySet and do further filtering on the result. You can safely call all() on






4. 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.






5. Evaluation happens upon use the "step" parameter of slice syntax - the first time you iterate over it - when pickling or caching results - upon calling repr() - upon calling len() - upon calling list() - upon calling bool()






6. Fields are specified by these






7. Returns a DateQuerySet -- a QuerySet that evaluates to a list of datetime.datetime objects representing all available dates of a particular kind within the contents of the QuerySet.

Warning: Invalid argument supplied for foreach() in /var/www/html/basicversity.com/show_quiz.php on line 183


8. 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.






9. 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.






10. Each one of these is a Python class that subclasses django.db.models.Model. Each attribute of one of these represents a database field.






11. Lookup type that returns results that fall into an inclusive date range.






12. Extra text to be displayed under the field on the object's admin form to provide assistance to users. It's useful for documentation even if your object doesn't have an admin form.






13. 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






14. These methods are intended to do "table-wide" things.






15. Lookup type for date/datetime fields that finds an exact year match. Takes a four-digit year.






16. Defined by django.db.models.ForeignKey. You use it just like any other Field type: by including it as a class attribute of your model.






17. Lookup type that returns results in a given list.






18. These are "anything that's not a field" - such as ordering options (ordering) - database table name (db_table) - or human-readable singular and plural names (verbose_name and verbose_name_plural)






19. 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






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






21. 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.






22. Lookup type that yields a case-insensitive match.






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






24. Disjunction operator for Q objects.






25. 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






26. This object allows you to compare the value of a model field with another field on the same model. Django supports the use of addition - subtraction - multiplication - division and modulo arithmetic with these objects - both with constants and with o






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






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. Used to get a QuerySet for a model. This is called 'objects' by default.






30. A manager method that returns a new QuerySet containing objects that do not match the given lookup parameters.






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






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






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






34. 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.






35. Returns True if the QuerySet contains any results - and False if not. This tries to perform the query in the simplest and fastest way possible - but it does execute nearly the same query. This means that calling this method on a queryset is faster th






36. An iterable (e.g. - a list or tuple) of 2-tuples to use as options for this field. If this is given - Django's admin will use a select box instead of the standard text field and will limit options to those given.






37. 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






38. If this option is True - the field is allowed to be blank. Default is False.






39. In this case - an intermediate model can have multiple foreign keys to the source model. Here - two foreign keys to the same model are permitted - but they will be treated as the two (different) sides of the many-to-many relation.






40. Returns a new QuerySet that uses SELECT DISTINCT in its SQL query. This eliminates duplicate rows from the query results.






41. 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.






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






43. Negation operator for Q objects.






44. These are specified as keyword arguments to the QuerySet methods filter() - exclude() and get(). These take the form field__lookuptype=value .






45. If True - the table does not permit duplicate values for this field.






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






47. 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.






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






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






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