Upload Button Icon Add office photos

Filter interviews by

Mphasis Automation Engineer Interview Questions and Answers

Updated 13 Mar 2024

Mphasis Automation Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. All part of technical and manual questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Why don’t they waste our time I don’t know but never give up keep try you will get great career opportunities. It will give you experience and make you more stronger.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Technical 

(5 Questions)

  • Q1. OOPs concepts and framework implementation
  • Q2. Bubble sort program
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

    • Start at the beginning of the array and compare the first two elements. If the first element is greater than the second, swap them.

    • Continue comparing adjacent elements and swapping them if necessary until the end of the array is reached.

    • Repeat this process for each ...

  • Answered by AI
  • Q3. Basic questions on selenium
  • Q4. Custom assertions in selenium
  • Ans. 

    Custom assertions in Selenium allow for creating personalized validation checks in test automation scripts.

    • Custom assertions can be created by extending the Assert class in Selenium.

    • They can be used to validate specific conditions or elements on a web page.

    • Custom assertions can improve test readability and maintainability by encapsulating complex validation logic.

    • Example: Creating a custom assertion to verify the prese

  • Answered by AI
  • Q5. Webdriver questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(6 Questions)

  • Q1. Tell me about yourself
  • Q2. Write a java program for prime number
  • Ans. 

    A Java program to check if a number is prime or not.

    • Create a function to check if a number is prime by iterating from 2 to the square root of the number.

    • If the number is divisible by any number in that range, it is not prime.

    • Handle edge cases like 0, 1, and negative numbers separately.

    • Example: public static boolean isPrime(int num) { for(int i=2; i<=Math.sqrt(num); i++) { if(num % i == 0) { return false; } } return tru

  • Answered by AI
  • Q3. Write a program for leap year
  • Ans. 

    Program to determine if a given year is a leap year or not

    • Check if the year is divisible by 4

    • If the year is divisible by 100, also check if it is divisible by 400

    • If both conditions are met, it is a leap year

  • Answered by AI
  • Q4. Explain your last project framework
  • Q5. Where you used OOPS concept in your framework
  • Ans. 

    I used OOPS concepts in my framework for creating reusable components and maintaining code modularity.

    • Used inheritance to create a base class with common functionalities shared by multiple classes

    • Implemented polymorphism to allow different classes to implement the same method in their own way

    • Encapsulated data and behavior within classes using access modifiers like private and public

    • Utilized abstraction to hide the impl...

  • Answered by AI
  • Q6. Write a java program for add this number 6134 and total will be 14
  • Ans. 

    Java program to add numbers 6134 to get total 14.

    • Create an array of integers with the numbers to be added

    • Iterate through the array and add the numbers

    • Check if the total equals 14

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. How do you check the OS on which the selenium program is running
  • Ans. 

    You can check the OS on which the Selenium program is running by using the 'System.getProperty()' method in Java.

    • Use 'System.getProperty('os.name')' to get the name of the operating system

    • Use 'System.getProperty('os.version')' to get the version of the operating system

    • Use 'System.getProperty('os.arch')' to get the architecture of the operating system

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java Oops concept
  • Q2. BDD Framework Data driven
Round 2 - One-on-one 

(2 Questions)

  • Q1. Project Structure
  • Q2. Coding questions from array

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for BDD Framework
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Write class to accept details of student
  • Ans. 

    Class to accept details of student

    • Create a class named Student with attributes like name, age, grade, etc.

    • Include a method to input details of the student.

    • Use constructor to initialize the attributes with input values.

  • Answered by AI
  • Q2. What's is **kwargs in python
  • Ans. 

    kwargs in Python is a special syntax that allows you to pass a variable number of keyword arguments to a function.

    • kwargs stands for keyword arguments.

    • It is used in Python functions to accept a variable number of keyword arguments.

    • kwargs is represented by a double asterisk (**).

    • Example: def my_func(**kwargs):

  • Answered by AI
  • Q3. What are magical methods
  • Ans. 

    Magical methods are special methods in Python that begin and end with double underscores, used for operator overloading and other special behaviors.

    • Magical methods are also known as dunder methods, short for 'double underscore'.

    • They are used to define how objects of a class behave when certain operations are performed on them, such as addition, subtraction, comparison, etc.

    • Examples of magical methods include __init__ f...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. BDD Cucumber basic questions
  • Q2. Java programs on oops, collection
  • Q3. Questions on appium/mobile testing
  • Q4. Questions on git and jenkins
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Best practices followed in automation framework
  • Ans. 

    Best practices in automation framework include modular design, code reusability, error handling, and continuous integration.

    • Modular design: Break the automation framework into smaller modules for better maintainability and reusability.

    • Code reusability: Write reusable functions and libraries to avoid duplication of code.

    • Error handling: Implement proper error handling mechanisms to gracefully handle exceptions and failur...

  • Answered by AI
  • Q2. Roles and responsibilities

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Give second largest number in array
maven and gradle
path parameter and query parameter
how to run cucumber test cases

I was interviewed in May 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Basic c question and questions related to memory
Round 2 - Technical 

(1 Question)

  • Q1. Embedded knowledge , memory in c, project knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best, have command on basic knowledge and the project you have completed

Mphasis Interview FAQs

How many rounds are there in Mphasis Automation Engineer interview?
Mphasis interview process usually has 1 rounds. The most common rounds in the Mphasis interview process are Technical.
How to prepare for Mphasis Automation Engineer 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 Mphasis. The most common topics and skills that interviewers at Mphasis expect are Ansible, Jenkins, Azure DevOps, Docker and Nexus.

Tell us how to improve this page.

Mphasis Automation Engineer Salary
based on 51 salaries
₹3 L/yr - ₹10.9 L/yr
8% less than the average Automation Engineer Salary in India
View more details

Mphasis Automation Engineer Reviews and Ratings

based on 9 reviews

3.1/5

Rating in categories

3.4

Skill development

4.0

Work-Life balance

1.6

Salary & Benefits

3.5

Job Security

3.1

Company culture

1.6

Promotions/Appraisal

3.1

Work Satisfaction

Explore 9 Reviews and Ratings
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.5k salaries
unlock blur

₹2 L/yr - ₹6.4 L/yr

Module Lead
2.4k salaries
unlock blur

₹8 L/yr - ₹33 L/yr

Transaction Processing Officer
2.2k salaries
unlock blur

₹1.4 L/yr - ₹4.2 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