Upload Button Icon Add office photos
Engaged Employer

i

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

Tech Mahindra Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 33.6k Reviews

Filter interviews by

Tech Mahindra Python Software Developer Interview Questions, Process, and Tips

Updated 2 Sep 2024

Top Tech Mahindra Python Software Developer Interview Questions and Answers

Tech Mahindra Python Software Developer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Telephonic Call 

(2 Questions)

  • Q1. What is http? rest api?
  • Ans. 

    HTTP is a protocol used for transferring data over the internet. REST API is a set of rules for building web services.

    • HTTP stands for Hypertext Transfer Protocol, used for communication between web servers and clients

    • REST API (Representational State Transfer) is a set of rules for building web services that adhere to the principles of REST

    • RESTful APIs use standard HTTP methods like GET, POST, PUT, DELETE to perform CRU...

  • Answered by AI
  • Q2. What is time complexity?
  • Ans. 

    Time complexity refers to the amount of time an algorithm takes to run as a function of the input size.

    • It measures how the runtime of an algorithm grows as the input size increases.

    • Common time complexities include O(1) constant time, O(log n) logarithmic time, O(n) linear time, O(n^2) quadratic time, and O(2^n) exponential time.

    • Understanding time complexity helps in analyzing and optimizing algorithms for efficiency.

    • Ex...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Telephonic interview with questions on python oops, threading, sql indexing etc.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between List vs tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified, tuple cannot

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

    • List is slower than tuple for iteration and indexing

  • Answered by AI
  • Q2. Sort a list containing duplicate numbers
  • Ans. 

    Sort a list with duplicate numbers using Python

    • Use the sorted() function to sort the list in ascending order

    • To maintain the duplicate numbers, use a lambda function as the key parameter in sorted()

    • Example: nums = [3, 1, 4, 1, 5, 9, 2, 6, 5], sorted_nums = sorted(nums, key=lambda x: (x, nums.index(x)))

  • Answered by AI

Skills evaluated in this interview

Python Software Developer Interview Questions Asked at Other Companies

Q1. What is the purpose of using the super keyword, Inheritance in Py ... read more
Q2. Have you implemented any context manager in your application?
Q3. What is byte code. What is filter function in python used for.
asked in Infosys
Q4. Can you write a Python program to determine whether two given wor ... read more
Q5. Difference between static and instance methods in python? Explain ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Exception handling, few coding questions. Memory management in Python, Garbage collection

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is a Python program that can be used to determine the best price for selling stocks?
  • Q2. Can you write a Python program to determine whether two given words are anagrams of each other without using built-in functions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Engage in these types of practices before attending the Infosys interview.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

String,lists,dict and coding knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - reverse a string without using in built functions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Create new list from the provided list but the order should be shuffled and no duplicate element should be removed
  • Ans. 

    Create a new list with shuffled order and no duplicate elements.

    • Use the random.shuffle() function to shuffle the list

    • Use a set to keep track of elements already added to the new list to avoid duplicates

    • Convert the set back to a list to maintain the order of elements

  • Answered by AI
  • Q2. Architecture of existing application
  • Ans. 

    The existing application follows a microservices architecture with separate components for different functionalities.

    • The application is divided into multiple services that communicate with each other through APIs.

    • Each service is responsible for a specific task or functionality, promoting modularity and scalability.

    • Examples of microservices in the architecture include user authentication service, payment processing serv

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join
  • Ans. 

    I am passionate about Python development and excited about the innovative projects your company is working on.

    • Passionate about Python development

    • Excited about innovative projects at company

    • Seeking growth and learning opportunities

  • Answered by AI
  • Q2. Where do you see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior Python developer leading a team of developers on innovative projects.

    • Continuing to enhance my Python skills and staying updated on new technologies

    • Taking on more leadership responsibilities and mentoring junior developers

    • Contributing to the success of the company through my technical expertise

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Nov 2024.

Round 1 - HR 

(2 Questions)

  • Q1. : Tell me about yourself
  • Q2. What is the difference between hard work and smart work? Tell me about the most boring job you have ever had?

Interview Preparation Tips

Interview preparation tips for other job seekers - An Inspection Marketplace designed to streamline the third-party inspection process through innovative digital technology.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

30mins on diff python and flask

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Data structures
  • Q2. Object orientation

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is a one-line function?
  • Ans. 

    A one-line function is a function written in a single line of code, typically used for simple operations.

    • One-line functions are concise and easy to read, often used for simple tasks like mathematical operations or string manipulation.

    • They are commonly used in lambda functions in Python.

    • Example: lambda x: x**2

  • Answered by AI
  • Q2. What is polymorphism in OOps?
  • Ans. 

    Polymorphism in OOPs refers to the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent different data types.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: In Python, the '+' operator can be us...

  • Answered by AI
  • Q3. Remove duplicates from the table.
  • Ans. 

    Use SQL query with DISTINCT keyword to remove duplicates from the table.

    • Use SELECT DISTINCT column_name FROM table_name to retrieve unique values from a specific column.

    • Use DELETE FROM table_name WHERE column_name IN (SELECT column_name FROM table_name GROUP BY column_name HAVING COUNT(*) > 1) to remove duplicates from the table.

  • Answered by AI
  • Q4. Join two tables?
  • Ans. 

    Use SQL JOIN to combine rows from two tables based on a related column between them.

    • Use JOIN keyword in SQL to combine rows from two tables based on a related column

    • Types of JOINs include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 JOIN table2 ON table1.column = table2.column

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Python Software Developer interview:
  • Python
  • OOPS
  • SQL-Join
  • SQL-windows
  • Lamdafunction
  • ClasssIObjects

Skills evaluated in this interview

Tech Mahindra Interview FAQs

How many rounds are there in Tech Mahindra Python Software Developer interview?
Tech Mahindra interview process usually has 1 rounds. The most common rounds in the Tech Mahindra interview process are Technical and Telephonic Call.
How to prepare for Tech Mahindra Python Software 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 Tech Mahindra. The most common topics and skills that interviewers at Tech Mahindra expect are Python, Django, MongoDB, Java and Javascript.
What are the top questions asked in Tech Mahindra Python Software Developer interview?

Some of the top questions asked at the Tech Mahindra Python Software Developer interview -

  1. what is time complexi...read more
  2. Sort a list containing duplicate numb...read more
  3. what is http? rest a...read more

Tell us how to improve this page.

Tech Mahindra Python Software Developer Interview Process

based on 3 interviews in last 1 year

Interview experience

3.7
  
Good

People are getting interviews through

based on 1 Tech Mahindra interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Tech Mahindra Python Software Developer Salary
based on 54 salaries
₹3.5 L/yr - ₹9.9 L/yr
7% less than the average Python Software Developer Salary in India
View more details

Tech Mahindra Python Software Developer Reviews and Ratings

based on 6 reviews

4.6/5

Rating in categories

4.7

Skill development

4.3

Work-Life balance

3.5

Salary & Benefits

3.9

Job Security

4.3

Company culture

3.3

Promotions/Appraisal

4.6

Work Satisfaction

Explore 6 Reviews and Ratings
Software Engineer
26.3k salaries
unlock blur

₹2 L/yr - ₹10.7 L/yr

Senior Software Engineer
21.3k salaries
unlock blur

₹5.5 L/yr - ₹22.9 L/yr

Technical Lead
11.6k salaries
unlock blur

₹9.5 L/yr - ₹31.9 L/yr

Associate Software Engineer
5.4k salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Team Lead
4.9k salaries
unlock blur

₹5.2 L/yr - ₹16.9 L/yr

Explore more salaries
Compare Tech Mahindra with

Infosys

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Wipro

3.7
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