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

Filter interviews by

Infosys Python Developer Lead Interview Questions, Process, and Tips

Updated 9 Dec 2024

Top Infosys Python Developer Lead Interview Questions and Answers

View all 9 questions

Infosys Python Developer Lead Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Not even asked for self intro, she was very rude and end the interview in 20mins, directly asked top level designs, even I have cleared and waiting for better outcome this interview hit hard.
  • Q2. I was stunned of the interviewer behavior and attitude.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(10 Questions)

  • Q1. What is generator? write sample code
  • Ans. 

    A generator in Python is a function that returns an iterator object which can be iterated over to generate values lazily.

    • Generators are created using a function with 'yield' keyword instead of 'return'.

    • They allow for efficient memory usage as they generate values on the fly.

    • Generators are useful for generating large sequences of data without storing them in memory.

    • Example: def my_generator(): for i in range(5): yiel...

  • Answered by AI
  • Q2. What is decorator?
  • Ans. 

    Decorator is a design pattern in Python that allows adding new functionality to an existing object without modifying its structure.

    • Decorators are functions that take another function as an argument and extend its behavior without modifying it directly.

    • They are commonly used to add logging, timing, caching, or authentication to functions.

    • Decorators use the @ symbol followed by the decorator name above the function defin...

  • Answered by AI
  • Q3. Difference between list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

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

    • List is used for dynamic data, tuple for fixed data.

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

  • Answered by AI
  • Q4. What is list comprehension? write some sample code? what is use of it?
  • Ans. 

    List comprehension is a concise way to create lists in Python by iterating over an existing list or iterable.

    • List comprehension is more concise and readable than traditional loops.

    • It can be used to filter elements, perform operations on elements, or create new lists based on existing ones.

    • Example: squares = [x**2 for x in range(10)]

    • Example: even_numbers = [x for x in range(10) if x % 2 == 0]

  • Answered by AI
  • Q5. Write code of fibonacci series?
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Initialize variables for the first two numbers in the series (0 and 1)

    • Use a loop to calculate the next number by adding the previous two numbers

    • Continue the loop until the desired number of terms is reached

  • Answered by AI
  • Q6. What is dictionary? is this accept duplicate or not?
  • Ans. 

    A dictionary in Python is a collection of key-value pairs. It does not accept duplicate keys.

    • A dictionary is created using curly braces {}

    • Keys in a dictionary must be unique, but values can be duplicated

    • Example: my_dict = {'name': 'John', 'age': 30, 'city': 'New York'}

  • Answered by AI
  • Q7. Multiple decorator
  • Q8. What are the main principles of oops?
  • Ans. 

    Main principles of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: Class with private attributes and public methods.

    • Inheritance: Ability to create a new class (derived class) from an existing class (base class), inheriting its attributes and methods. Example: Subclass 'Dog' inheriting from superc...

  • Answered by AI
  • Q9. Explain type of inheritance
  • Ans. 

    Type of inheritance in object-oriented programming determines how a subclass can inherit attributes and methods from a superclass.

    • Single inheritance: a subclass inherits from only one superclass.

    • Multiple inheritance: a subclass inherits from multiple superclasses.

    • Multilevel inheritance: a subclass inherits from a superclass, which in turn inherits from another superclass.

    • Hierarchical inheritance: multiple subclasses in...

  • Answered by AI
  • Q10. What is aws lambda function
  • Ans. 

    AWS Lambda is a serverless computing service provided by Amazon Web Services.

    • Serverless computing service

    • Allows running code without provisioning or managing servers

    • Automatically scales based on incoming traffic

    • Supports multiple programming languages like Python, Node.js, Java, etc.

    • Pay only for the compute time consumed

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a seasoned Python developer with experience leading teams and delivering high-quality software solutions.

    • Over 5 years of experience in Python development

    • Strong leadership skills in guiding and mentoring team members

    • Proven track record of delivering successful software projects on time and within budget

  • Answered by AI
  • Q2. Explain your project briefly
  • Ans. 

    Developed a web application for online shopping with user authentication and payment gateway integration.

    • Created user registration and login functionality using Django framework

    • Integrated Stripe API for secure payment processing

    • Implemented product catalog and shopping cart features

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic concepts of python

Skills evaluated in this interview

Python Developer Lead Interview Questions Asked at Other Companies

asked in Infosys
Q1. what is list comprehension? write some sample code? what is use o ... read more
asked in Tradofina
Q2. What is 21. Hash mapping 22. Mutable and immutable 23. Bugsnag li ... read more
asked in Infosys
Q3. what is dictionary? is this accept duplicate or not?
asked in Infosys
Q4. what are the main principles of oops?
asked in Infosys
Q5. what is generator? write sample code

Python Developer Lead Jobs at Infosys

View all

Interview questions from similar companies

I applied via Referral and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What did you asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview wanted to test about person knowledge and communication skills. Most of the questions asked to they subject in interview. Person details.
Thanks you

Interview Questionnaire 

1 Question

  • Q1. In C# --> Abstraction, Interface , Abstract Method, Abstract Class, Polymorphisms, Encapsulation ,Inheritance, Serialization,
  • Ans. 

    C# concepts including abstraction, interface, abstract method, abstract class, polymorphism, encapsulation, inheritance, and serialization.

    • Abstraction: hiding implementation details

    • Interface: defining a contract for behavior

    • Abstract method: method without implementation

    • Abstract class: class with one or more abstract methods

    • Polymorphism: ability of objects to take on multiple forms

    • Encapsulation: bundling data and behavi...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Tr1- difference between switch case and if else, write the code for sorting
  • Ans. 

    Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.

    • Switch case is faster than if else for multiple conditions

    • If else is more readable for binary conditions

    • Sorting can be done using bubble sort, insertion sort, quick sort, etc.

    • Example code for bubble sort: for(i=0;iarr[j+1]){swap(&arr[j],&arr[j+1]);}}}

  • Answered by AI
  • Q2. Tr2-difference between compiler and interpreter, Solve a challange on their own coding platform with proper output
  • Ans. 

    Difference between compiler and interpreter with a coding challenge

    • Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution

    • Compiler generates an executable file while interpreter does not

    • Compiler is faster but debugging is harder while interpreter is slower but debugging is easier

    • Coding challenge: Write a program to find the sum of two numbers

  • Answered by AI
  • Q3. Oops concept

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Yourself
  • Q2. How do you feel about working nights and weekends?
  • Q3. I will try to complete my tasks within weekdays effectively and efficiently to avoid weekand night work.
  • Q4. What is the difference b/w confidence and over confidence?

Interview Preparation Tips

Interview preparation tips for other job seekers - Tech mahendra company is a very efficent work hard and if you have a growth of employees skills and sincearly work hard

Interview Questionnaire 

1 Question

  • Q1. Spring IOC , bean scopes, Tomcat server questions , SpringBoot questions Dependency questions, Maven questions

Interview Questionnaire 

1 Question

  • Q1. In 1st round they asked aptitude questions And 2nd round was an technical hr interview in this they asked oops concepts and basic C programming

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic oops questions
  • Q2. Software Engineering: software development lifecycle, water flow model etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are mostly gentle and friendly.Just be bold and answer what you know.hope this helps.all the best :)

I applied via Walk-in and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic Programming questions.
  • Q2. Fibonacci program
  • Q3. OOPS concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic OOPS concepts and basic programs.

Infosys Interview FAQs

How many rounds are there in Infosys Python Developer Lead interview?
Infosys interview process usually has 2 rounds. The most common rounds in the Infosys interview process are Technical, Behavioral and HR.
How to prepare for Infosys Python Developer Lead 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, Machine Learning, Debugging, Javascript and Application Development.
What are the top questions asked in Infosys Python Developer Lead interview?

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

  1. what is list comprehension? write some sample code? what is use of ...read more
  2. what is dictionary? is this accept duplicate or n...read more
  3. what is generator? write sample c...read more

Tell us how to improve this page.

Infosys Python Developer Lead Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Infosys Python Developer Lead Salary
based on 7 salaries
₹6.9 L/yr - ₹19.5 L/yr
11% more than the average Python Developer Lead Salary in India
View more details
Python Lead

Chennai

5-8 Yrs

Not Disclosed

Python Lead

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Python Lead

Chennai

5-9 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.4k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
51.2k salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

System Engineer
31.7k salaries
unlock blur

₹2.5 L/yr - ₹5.6 L/yr

Technical Lead
31k salaries
unlock blur

₹5.1 L/yr - ₹19.5 L/yr

Senior Associate Consultant
28.8k salaries
unlock blur

₹6.2 L/yr - ₹16.9 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

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