Practice Questions
Practice Questions
Explain the key differences between SQL and NoSQL databases, providing at
least two advantages and two disadvantages of each.
Given the following Django ORM query, explain what it does:
Python
CopyEdit
from myapp.models import User
users = User.objects.filter(is_active=True).order_by('-date_joined')[:5]
Question