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.

84 Moderate Generators Python

What does generator.send() do?

Short take Full answer on next page

Simple meaning

send(value) resumes the generator and makes yield return that value inside the function.

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

Read full answer Example · Mistake · Say this
86 Moderate Generators Python

What is yield from used for?

Short take Full answer on next page

Simple meaning

yield from subgen delegates iteration to another iterable or generator, forwarding values, send, and throw.

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

Read full answer Example · Mistake · Say this
87 Moderate OOP Python

What is the method resolution order (MRO)?

Short take Full answer on next page

Simple meaning

MRO is the linear order Python uses to find attributes on a class and its bases.

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

Read full answer Example · Mistake · Say this
89 Moderate OOP Python

What are abstract base classes in Python?

Short take Full answer on next page

Simple meaning

ABCs, from abc.ABC, let you declare abstract methods that subclasses must implement.

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

Read full answer Example · Mistake · Say this
90 Moderate OOP Python

How does a property differ from a plain attribute?

Short take Full answer on next page

Simple meaning

@property turns a method into managed attribute access so callers use obj.x instead of obj.x().

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

Read full answer Example · Mistake · Say this
92 Moderate venv Python

How does venv isolate site-packages?

Short take Full answer on next page

Simple meaning

The venv interpreter's sys.prefix points at the env directory, so imports look in venv/lib/site-packages first.

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

Read full answer Example · Mistake · Say this
94 Moderate pip Python

What does pip install -e . do?

Short take Full answer on next page

Simple meaning

Editable install links the project into site-packages so code changes apply without reinstalling.

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

Read full answer Example · Mistake · Say this
96 Moderate Django MVT Python

Walk through Django's request/response cycle.

Short take Full answer on next page

Simple meaning

The WSGI/ASGI handler loads middleware, resolves the URL, and calls the view.

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

Read full answer Example · Mistake · Say this
98 Moderate Django MVT Python

What is a context processor?

Short take Full answer on next page

Simple meaning

A context processor is a function that receives the request and returns a dict merged into every template context.

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

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