Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Innominds Software Team. If you also belong to the team, you can get access from here

Innominds Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Innominds Software Python Developer Interview Questions, Process, and Tips

Updated 6 Apr 2022

Top Innominds Software Python Developer Interview Questions and Answers

  • Q1. Can you explain method overriding in Python?
  • Q2. What is the difference between SOAP and REST in the context of Web API services?
  • Q3. Can you explain the architecture of Django?
View all 6 questions

Innominds Software Python Developer Interview Experiences

2 interviews found

I was interviewed before Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

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

  • Q1. Can you explain the difference between mutable and immutable objects in Python?
  • Ans. 

    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.

  • Answered Anonymously
  • Q2. What is the difference between SOAP and REST in the context of Web API services?
  • Ans. 

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

  • Answered Anonymously
  • Q3. Can you explain method overriding in Python?
  • Ans. 

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

  • Answered Anonymously
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on Python and Django mainly.

  • Q1. What are the differences between Django and Flask?
  • Ans. 

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

  • Answered Anonymously
  • Q2. Can you explain the architecture of Django?
  • Ans. 

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

  • Answered Anonymously
  • Q3. What is the difference between JSON and XML?
  • Ans. 

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

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAInnominds interview preparation:Topics to prepare for the interview - Python ,Django, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

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 resume tips for other job seekers

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.

Final outcome of the interviewRejected

Skills evaluated in this interview

Python Developer Interview Questions & Answers

user image Kiran Kumar

posted on 26 Sep 2020

Interview Questionnaire 

1 Question

  • Q1. Mutable vs immutable, list,tuple,strings, generators, decorators, iterators, method overriding, API's, difference between REST and SOAP web services, JSON vs XML, Django vs FLASK, architecture of Django, D...

Python Developer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Tell me the logic of program to reverse a given string word by wo ... read more
asked in TCS
Q2. 1. Difference between tuple and a list? 2. What are decorators? 3 ... read more
asked in Cognizant
Q3. What is the difference between variable and object?
asked in Accenture
Q4. 2.Write a program to print a string in reverse without using buil ... read more
Q5. How to convert the .txt file into .csv file in python

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed before Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

General Aptitude question and english Verbels

Round 3 - Technical 

(1 Question)

  • Q1. Questions on Python, NPL and basic projects done by US
Round 4 - HR 

(1 Question)

  • Q1. They Stated saying that we get an offer letter by soon get ready for the joining, But no response from them if we get back to them

Interview Preparation Tips

Topics to prepare for Lumina Datamatics Python Developer interview:
  • Python
  • SQL
  • Ai Npl
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1.Python Core Concept 2.Sql Queries 3.Coding Question
  • Q2. 4.oops concept 5.project level question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well what ever you write in your resume.Be confident for role and responsibility.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Difference between List and Array
  • Ans. 

    List is a built-in Python data structure that can hold elements of different data types, while Array is a data structure from the NumPy library that can hold elements of the same data type.

    • List is a dynamic array that can grow or shrink in size, while Array has a fixed size.

    • List can hold elements of different data types, while Array can only hold elements of the same data type.

    • List is a part of Python's standard librar...

  • Answered by AI
  • Q2. Types of renderer classes in DRF
  • Ans. 

    DRF provides JSON, BrowsableAPI, TemplateHTML, and AdminRenderer classes for rendering responses.

    • JSONRenderer: Renders data in JSON format.

    • BrowsableAPIRenderer: Renders data in a browsable HTML format with forms for interacting with the API.

    • TemplateHTMLRenderer: Renders data using a specified template in HTML format.

    • AdminRenderer: Renders data in a format suitable for Django admin interface.

  • Answered by AI
  • Q3. What is Method Resolution Order?
  • Ans. 

    Method Resolution Order (MRO) is the order in which classes are searched for a method or attribute in Python.

    • MRO is determined by the C3 linearization algorithm in Python.

    • It follows a depth-first left-to-right traversal of the class hierarchy.

    • MRO is important in multiple inheritance scenarios to resolve method conflicts.

    • Example: class A: pass class B(A): pass class C(A): pass class D(B, C)

  • Answered by AI
  • Q4. Difference between class method and static method.
  • Ans. 

    Class method is bound to the class itself, while static method is not bound to any specific instance or class.

    • Class method takes 'cls' as the first parameter, allowing access to class variables and methods.

    • Static method does not take any special parameters and does not have access to class or instance variables.

    • Class method can be called on both the class and instances of the class.

    • Static method is mainly used for util...

  • Answered by AI
  • Q5. What are transactions in SQL?
  • Ans. 

    Transactions in SQL are a way to ensure data integrity by grouping multiple SQL statements into a single unit of work.

    • Transactions help maintain the ACID properties (Atomicity, Consistency, Isolation, Durability) of a database.

    • They allow multiple SQL statements to be executed as a single unit, either all succeeding or all failing.

    • Transactions can be started with BEGIN TRANSACTION, COMMIT to save changes, or ROLLBACK to...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Company organized a F2F interview instead of going virtual. The interviewer was a bit rude and I answered nearly 80% of the questions. HR told me to leave as I would be contacted via the agency. Till today no feedback was passed on. Poor hiring ethics of the company.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Decorators and its type in python
  • Ans. 

    Decorators in Python are functions that modify the behavior of other functions or methods.

    • Decorators are used to add functionality to existing functions without modifying their code.

    • Types of decorators in Python include function decorators, class decorators, and method decorators.

    • Example: @staticmethod and @classmethod are built-in decorators in Python.

  • Answered by AI
  • Q2. Oops concept abstraction , method overloading and overriding

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They asked basic questions on python , git , django framework

Interview Preparation Tips

Interview preparation tips for other job seekers - You can prepare for everything
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed before Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

General Aptitude question and english Verbels

Round 3 - Technical 

(1 Question)

  • Q1. Questions on Python, NPL and basic projects done by US
Round 4 - HR 

(1 Question)

  • Q1. They Stated saying that we get an offer letter by soon get ready for the joining, But no response from them if we get back to them

Interview Preparation Tips

Topics to prepare for Lumina Datamatics Python Developer interview:
  • Python
  • SQL
  • Ai Npl
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1.Python Core Concept 2.Sql Queries 3.Coding Question
  • Q2. 4.oops concept 5.project level question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well what ever you write in your resume.Be confident for role and responsibility.

Innominds Software Interview FAQs

How to prepare for Innominds Software Python Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Innominds Software. The most common topics and skills that interviewers at Innominds Software expect are Python, SQL, Big Data, Data Science and Debugging.

Tell us how to improve this page.

Innominds Software Python Developer Salary
based on 12 salaries
₹2.4 L/yr - ₹12 L/yr
22% more than the average Python Developer Salary in India
View more details
Senior Software Engineer
443 salaries
unlock blur

₹7.5 L/yr - ₹28 L/yr

Software Engineer
421 salaries
unlock blur

₹4 L/yr - ₹14 L/yr

Senior Engineer
215 salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Associate Software Engineer
162 salaries
unlock blur

₹2.3 L/yr - ₹8.1 L/yr

Engineer
156 salaries
unlock blur

₹3 L/yr - ₹13.2 L/yr

Explore more salaries
Compare Innominds Software with

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

Mphasis

3.4
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview