Premium Employer

i

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

Infosys Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 37.2k Reviews

Filter interviews by

Infosys Python Developer Interview Questions and Answers

Updated 6 Jan 2025

Infosys Python Developer Interview Experiences

9 interviews found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Convert nested list into a flat list
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. List , tuple difference, ordered unordered

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
Round 1 - Coding Test 

Dictionary
Dic={"name":"sonali","rollno":132,"address":"Mira nagar"}
print(dic)

Round 2 - Coding Test 

String
Str="India is country"
print(Str)

Round 3 - Aptitude Test 

Html
Python
Spring framework
Hibernate framework
C++
Gui
Servlet
Session
Cookie

Round 4 - Coding Test 

Python tuple
The tuple are denoted by round bracket ()
Tup=(1,2,3,4)
print (Tup)

Round 5 - Coding Test 

Set
Seobj={10,20,30,40,50}
print (Seobj)

Round 6 - Coding Test 

Python Features
Simple
High level language
Platform independent
Portable and scalable
Interpreter
Embedded
Gui
Huge Library
Scripting language
Procedure object oriented
A=12
B=10
C=A+B
print (C)

Round 7 - Aptitude Test 

Gui
Graphical user interface
Web application
Website development
Designing
SQL database
MySQL database
Widget

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you ?
Again thank you
Byee

,...........,.....................................................,

Interview Questionnaire 

2 Questions

  • Q1. I have given interview for Python developer Position. Interview was quite easy. Basic Python questions were asked.
  • Q2. How do you do version control 8n your project.
  • Ans. 

    I use Git for version control in my projects.

    • I create a Git repository for the project

    • I commit changes regularly with descriptive messages

    • I use branches for new features or bug fixes

    • I merge branches back into the main branch when ready

    • I use tags to mark important milestones or releases

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read Basic Python, How to do Git Version control and your project details.

Skills evaluated in this interview

Infosys interview questions for designations

 Python Software Developer

 (9)

 Python Developer Lead

 (2)

 Python Developer Intern

 (1)

 Python Developer Trainee

 (1)

 Python Fullstack Developer

 (1)

 Python and Django Developer

 (3)

 Developer

 (21)

 Software Developer

 (256)

I applied via Walk-in and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why was there a gap in your employment between[inster date]and [inster date]
  • Q2. Tell me about an accomplishment you are most proud of.

Interview Preparation Tips

Interview preparation tips for other job seekers - i dont know about it but i will learn

Python Developer Interview Questions & Answers

user image siva sankari

posted on 26 Sep 2021

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong and be bold enough to attend the interview...

Python Developer Jobs at Infosys

View all

Interview Questionnaire 

1 Question

  • Q1. Basics of python

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice.. interviewer was friendly a telephonic interview

I applied via Walk-in and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What questions asking in python

Interview Preparation Tips

Interview preparation tips for other job seekers - Please give me interview tips

Interview Questionnaire 

1 Question

  • Q1. Python

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between list & tuple?
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List uses square brackets [], tuple uses parentheses ().

    • List elements can be changed, added, or removed, tuple elements cannot be changed.

    • Lists are used for collections of items that may need to be modified, tuples are used for fixed collections of items.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q2. What is namespace and its types?
  • Ans. 

    Namespace is a way to organize variables and functions in a program to avoid naming conflicts.

    • Namespace helps in avoiding naming conflicts by providing a unique space for each identifier.

    • Types of namespaces include global namespace, local namespace, built-in namespace, and module namespace.

    • Example: In Python, each module has its own namespace where all the variables and functions defined in that module reside.

  • Answered by AI
  • Q3. Write code to explain multiple inheritance
  • Ans. 

    Multiple inheritance in Python allows a class to inherit attributes and methods from more than one parent class.

    • Python supports multiple inheritance by allowing a class to inherit from multiple parent classes.

    • The order of parent classes in the inheritance list matters, as methods are searched for in the order they appear.

    • Diamond problem can occur in multiple inheritance when two parent classes have a common ancestor cl...

  • Answered by AI
  • Q4. Define lambda function and give an example?
  • Ans. 

    Lambda function is an anonymous function defined using the lambda keyword in Python.

    • Lambda functions are used for creating small, one-time use functions without a name.

    • Syntax: lambda arguments: expression

    • Example: double = lambda x: x * 2

  • Answered by AI
  • Q5. Oops concept,decorator,iterator.

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Python Developer interview?
Infosys interview process usually has 3 rounds. The most common rounds in the Infosys interview process are Coding Test, Aptitude Test and Technical.
How to prepare for Infosys 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 Infosys. The most common topics and skills that interviewers at Infosys expect are Python, Python Development, Django, Big Data and Machine Learning.
What are the top questions asked in Infosys Python Developer interview?

Some of the top questions asked at the Infosys Python Developer interview -

  1. How do you do version control 8n your proje...read more
  2. Convert nested list into a flat l...read more
  3. I have given interview for Python developer Position. Interview was quite easy....read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Infosys interviews
WalkIn
Company Website
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Python Developer Salary
based on 194 salaries
₹2 L/yr - ₹8.1 L/yr
15% less than the average Python Developer Salary in India
View more details

Infosys Python Developer Reviews and Ratings

based on 10 reviews

2.9/5

Rating in categories

2.1

Skill development

3.0

Work-Life balance

2.2

Salary & Benefits

3.6

Job Security

2.9

Company culture

1.9

Promotions/Appraisal

1.9

Work Satisfaction

Explore 10 Reviews and Ratings
RestartWithInfosys-ADM (Java/.net/Mainframe/Python Developer)

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Python Developer - Bangalore

Pune,

Ahmedabad

+1

5-10 Yrs

₹ 5-15 LPA

Python Developer

Pune,

Ahmedabad

+1

3-8 Yrs

₹ 5-13 LPA

Explore more jobs
Technology Analyst
56.3k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.7k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.2k salaries
unlock blur

₹4.3 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview