Upload Button Icon Add office photos

Filter interviews by

Mphasis Python Automation Engineer Interview Questions and Answers

Updated 17 May 2023

Mphasis Python Automation Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2023. There were 2 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 - Technical 

(2 Questions)

  • Q1. Basics of python
  • Q2. Basic of selenium theory questions

Interview questions from similar companies

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

Based on list, then Selenium x path

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Project architecture
  • Q3. Sns vs SQS architecture
  • Ans. 

    SNS is a pub/sub messaging service while SQS is a message queue service in AWS architecture.

    • SNS allows for push notifications to multiple subscribers, while SQS is used for decoupling services and handling asynchronous tasks.

    • SNS is used for real-time messaging and event-driven architecture, while SQS is used for reliable message processing and scaling.

    • SNS supports multiple message delivery protocols like HTTP, HTTPS, E...

  • Answered by AI
  • Q4. S3 file parking and triggers
  • Q5. Explain Eventbridge
  • Ans. 

    Eventbridge is a serverless event bus service provided by AWS for connecting applications using events.

    • Eventbridge allows different AWS services, SaaS applications, and custom applications to communicate with each other through events.

    • It simplifies the process of building event-driven architectures by decoupling producers and consumers of events.

    • Eventbridge can be used to trigger automated workflows, connect different ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Valid Sudoku leetcode problem
  • Q2. Generate Parentheses leetcode problem
  • Ans. 

    Generate all valid combinations of parentheses for given n pairs

    • Use backtracking to generate all valid combinations of parentheses

    • Keep track of the number of open and close parentheses used

    • Add open parenthesis if there are remaining open parentheses, add close parenthesis if there are more open than close parentheses

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to python web framework
  • Q2. Real time python project problem solving questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Print words which length has even number from sentences
  • Ans. 

    Print words with even length from sentences

    • Iterate through each word in the sentence

    • Check the length of the word using len() function

    • If the length is even, add the word to a new list

    • Return the list of words with even length

  • Answered by AI
  • Q2. Print string is symmetrical or not also string is palindrome or both
  • Ans. 

    Check if a string is symmetrical, palindrome, or both.

    • Check if the string is equal to its reverse to determine if it is a palindrome.

    • Check if the string is equal to its mirror image to determine if it is symmetrical.

    • A string that is both a palindrome and symmetrical is one that reads the same forwards and backwards.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between List and Tuple in python?
  • Ans. 

    List is mutable, Tuple is immutable in Python.

    • List can be modified after creation, Tuple cannot be modified.

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

    • List is used for collections of items that may need to be changed, Tuple is used for collections of items that should not change.

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

  • Answered by AI
  • Q2. Get min and max from a list without using function
  • Ans. 

    Find min and max from a list without using function

    • Iterate through the list and compare each element with current min and max values

    • Update min and max values accordingly

  • Answered by AI
  • Q3. Explain iterator, generator and lambdas
  • Ans. 

    Iterators are objects that allow iteration over a sequence, generators are functions that yield values one at a time, and lambdas are anonymous functions.

    • Iterators are objects that implement the iterator protocol, with methods like __iter__() and __next__().

    • Generators are functions that use the yield keyword to return values one at a time, pausing execution between each yield.

    • Lambdas are anonymous functions defined usi...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via campus placement at Vimal Jyothi Engineering College, Kannur and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Coding and debugging questions
  • Q2. Aptitude questions based on the technical part
Round 2 - English Assessment 

(1 Question)

  • Q1. Checking our reading writing listening speaking skills
Round 3 - HR 

(1 Question)

  • Q1. Asked questions about oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Friendly interview process
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2023. There were 2 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 - HR 

(2 Questions)

  • Q1. She asking Work experience related and expected CTC etc.
  • Q2. Your resume is shortlisted then call back you.

I applied via Approached by Company and was interviewed in May 2022. There were 3 interview rounds.

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 

(3 Questions)

  • Q1. Robotframework Architecture, Data types in RF, set suite & teardown, conditions in RF,
  • Q2. How to write test cases & action, How to create list & dict [Data operations on it],
  • Ans. 

    To write test cases, identify scenarios, create test data, and execute tests. For data operations on list & dict, use built-in functions.

    • For test cases, identify positive and negative scenarios, boundary conditions, and edge cases.

    • Create test data that covers all possible scenarios and edge cases.

    • Use assert statements to verify expected results.

    • For data operations on list & dict, use built-in functions like append(), p...

  • Answered by AI
  • Q3. Python - Write program from Prime numbers between 1 to 100
  • Ans. 

    Python program to print prime numbers between 1 to 100

    • Loop through numbers 1 to 100

    • Check if number is prime using modulus operator

    • Print the prime numbers

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Package, namespace, hashable objects in dict, heap space, garbage colector
  • Q2. Familiarity with Networking concepts, WIFI, 5G ,...

Interview Preparation Tips

Topics to prepare for L&T Technology Services Python Automation Engineer interview:
  • python
  • Robotframework
  • OOPS
Interview preparation tips for other job seekers - This was for a Python Automation engineer using RF.

Skills evaluated in this interview

Mphasis Interview FAQs

How many rounds are there in Mphasis Python Automation Engineer interview?
Mphasis interview process usually has 2 rounds. The most common rounds in the Mphasis interview process are Resume Shortlist and Technical.
What are the top questions asked in Mphasis Python Automation Engineer interview?

Some of the top questions asked at the Mphasis Python Automation Engineer interview -

  1. Basic of selenium theory questi...read more
  2. Basics of pyt...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Mphasis interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 761 Interviews
Publicis Sapient Interview Questions
3.5
 • 603 Interviews
View all
Mphasis Python Automation Engineer Salary
based on 17 salaries
₹4.7 L/yr - ₹10 L/yr
At par with the average Python Automation Engineer Salary in India
View more details
Software Engineer
6.2k salaries
unlock blur

₹2 L/yr - ₹11 L/yr

Senior Software Engineer
5.6k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Associate Software Engineer
4.6k salaries
unlock blur

₹2 L/yr - ₹6.4 L/yr

Module Lead
2.4k salaries
unlock blur

₹8.1 L/yr - ₹33 L/yr

Transaction Processing Officer
2.2k salaries
unlock blur

₹1.1 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Mphasis with

Cognizant

3.8
Compare

Wipro

3.7
Compare

Accenture

3.9
Compare

TCS

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