Python track

Python interview questions and answers

Panel-ready Python & Django questions for freshers and experienced developers. Practice at Coding Cadre in Faridabad, or Online from Delhi NCR.

228 Qs
121 Moderate Celery Python

How do you retry a failed Celery task?

Short take

Simple meaning

Bind the task with bind=True and call self.retry(exc=exc, countdown=seconds) inside the catch block, or set autoretry_for and retry_backoff.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
122 Moderate Celery Python

What is Celery Beat?

Short take

Simple meaning

Beat is a scheduler that enqueues periodic tasks according to a schedule in code or the database.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
124 Moderate Caching Python

How should you design Django cache keys?

Short take

Simple meaning

Include a version or key prefix, the resource id, and any vary dimension such as locale.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
132 Moderate Memory Python

What problems do circular references cause?

Short take

Simple meaning

Cycles delay reclamation until GC runs, which can retain large graphs longer than you expect.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
138 Moderate itertools Python

When do you use itertools.chain and islice?

Short take

Simple meaning

chain concatenates iterables without building an intermediate list, useful when merging query results you already have as iterators.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
140 Moderate asyncio Python

What is the asyncio event loop responsible for?

Short take

Simple meaning

The loop schedules ready callbacks and coroutines, waits on sockets, and resumes them when I/O completes.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
Prev Page 7 of 12 Next
Chat with us