Innominds interview experience Real time questions & tips from candidates to crack your interview

Python Developer

Innominds
upvote
share-icon
2 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 4 months
Topics: Python ,Django, Data Structures, Algorithms, System Design, OOPS
Tip
Tip

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application process
Where: Other
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Interview rounds

01
Round
Medium
Video Call
Duration60 minutes
Interview date26 Sep 2020
Coding problem3

Technical Interview round with questions on Python and Web Services mainly.

1. Python Question

Mutable vs Immutable Objects

Problem approach

Immutable Objects : These are of in-built types like int, float, bool, string, unicode, tuple. In simple words, an immutable object can’t be changed after it is created.
Mutable Objects : These are of type list, dict, set . Custom classes are generally mutable.
To summarise the difference, mutable objects can change their state or contents and immutable objects can’t change their state or content.

2. Web Services Question

SOAP Vs. REST: Difference between Web API Services

Problem approach

SOAP stands for Simple Object Access Protocol whereas REST stands for Representational State Transfer.
SOAP is a protocol whereas REST is an architectural pattern.
SOAP uses service interfaces to expose its functionality to client applications while REST uses Uniform Service locators to access to the components on the hardware device.
SOAP needs more bandwidth for its usage whereas REST doesn’t need much bandwidth.
Comparing SOAP vs REST API, SOAP only works with XML formats whereas REST work with plain text, XML, HTML and JSON.
SOAP cannot make use of REST whereas REST can make use of SOAP.

3. Python Question

Explain Method Overriding in Python

Problem approach

Method overriding is an ability of any object-oriented programming language that allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its super-classes or parent classes. When a method in a subclass has the same name, same parameters or signature and same return type(or sub-type) as a method in its super-class, then the method in the subclass is said to override the method in the super-class.
The version of a method that is executed will be determined by the object that is used to invoke it. If an object of a parent class is used to invoke the method, then the version in the parent class will be executed, but if an object of the subclass is used to invoke the method, then the version in the child class will be executed. In other words, it is the type of the object being referred to (not the type of the reference variable) that determines which version of an overridden method will be executed.

02
Round
Easy
Video Call
Duration60 minutes
Interview date26 Sep 2020
Coding problem3

Technical Interview round with questions on Python and Django mainly.

1. Django Question

Django vs Flask

Problem approach

Flask provides support for API while Django doesn’t have any support for API.
Flask does not support dynamic HTML pages and Django offers dynamic HTML pages.
Flask is a Python web framework built for rapid development whereas Django is built for easy and simple projects.
Flask offers a diversified working style while Django offers a Monolithic working style.
URL dispatcher of the Flask web framework is a RESTful request on the other hand, URL dispatcher of Django framework is based on controller-regex.
Flask is WSGI framework while Django is a Full Stack Web Framework.

2. Django Question

Explain the architecture of DJANGO.

Problem approach

Django is based on MVT (Model-View-Template) architecture. MVT is a software design pattern for developing a web application. 
MVT Structure has the following three parts – 

Model: The model is going to act as the interface of your data. It is responsible for maintaining data. It is the logical data structure behind the entire application and is represented by a database (generally relational databases such as MySql, Postgres). 
View: The View is the user interface — what you see in your browser when you render a website. It is represented by HTML/CSS/Javascript and Jinja files.
Template: A template consists of static parts of the desired HTML output as well as some special syntax describing how dynamic content will be inserted.

3. Technical Question

Difference between JSON and XML

Problem approach

1. JSON is JavaScript Object Notation. XML is Extensible markup language
2. JSON is based on JavaScript language. XML is derived from SGML.
3. JSON is a way of representing objects. xml is a markup language and uses tag structure to represent data items.
4. JSON does not provides any support for namespaces. XML supports namespaces.
5. JSON supports array. XML doesn’t supports array.
6. JSON files are very easy to read as compared to XML. XML documents are comparatively difficult to read and interpret.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
Frontend Developer
2 rounds | 2 problems
Interviewed by Innominds
1261 views
0 comments
0 upvotes
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3319 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2580 views
0 comments
0 upvotes