Upload Button Icon Add office photos

Filter interviews by

Mphasis-Wyde Associate Software Engineer Interview Questions and Answers

Updated 3 Aug 2021

Mphasis-Wyde Associate Software Engineer Interview Experiences

1 interview found

Interview Questionnaire 

2 Questions

  • Q1. Final year project
  • Q2. Explain project
  • Ans. 

    The project was a web application for managing employee data.

    • Developed using Java and Spring framework

    • Implemented CRUD operations for employee data

    • Used MySQL database for data storage

    • Included user authentication and authorization

    • Deployed on AWS Elastic Beanstalk

  • Answered by AI

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Good questions
  • Q2. About .NET
  • Q3. About JavaScript

Interview Preparation Tips

Round: Test
Experience: Objective based questions covering general aptitude, c programming, algorithms, os, dbms, software engineering

Round: HR Interview
Experience: Candidates are eliminated after each round of interviews. Number of interviews varies from candidate to candidate. However 1 HR and 1 Tech interview is compulsory. Some may have separate tech and coding interviews.

General Tips: The 1st round aptitude paper is not too tough but ensures that not everyone is able to clear the cutoff.
In the tech interview programming questions were easy but OS questions are tricky and interviewer is looking for a candidate with a solid basics.
Skill Tips: Try to score as much as you can in the 1st written round. If you have a good score it will help you during the interviews. Try to score as much as you can in the 1st written round. If you have a good score it will help you during the interviews.
Do not spend too much effort on coding questions. Instead focus on fundamentals of OS, DBMS concepts like paging, threading, system calls etc
Skills:
College Name: NIT Surathkal

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

14 Questions

  • Q1. Some questions regarding my Internship program and the project.
  • Q2. Puzzles that are also available on geeks for geeks.
  • Q3. Tell me about yourself.
  • Q4. Where do you see yourself in next five years?
  • Q5. What field you think you are good at?
  • Q6. What are your strengths and weaknesses?
  • Q7. My experiences in college festivals and events participation.
  • Ans. 

    I actively participated in college festivals and events, gaining valuable teamwork and leadership skills.

    • Organized and managed various events such as cultural nights and talent shows

    • Collaborated with team members to plan and execute successful events

    • Developed communication and interpersonal skills through interactions with participants and attendees

  • Answered by AI
  • Q8. You are a team leader and one of your employee is unable to complete his/her work on time and due to him you are unable to submit the work before the deadline to your senior. How will you make that employe...
  • Ans. 

    As a team leader, I would identify the reason for the delay and work with the employee to find a solution to complete the work on time.

    • Have a one-on-one meeting with the employee to understand the reason for the delay

    • Identify any roadblocks or challenges the employee is facing and work together to find a solution

    • Set clear expectations and deadlines for the employee to complete the work

    • Provide support and resources to h...

  • Answered by AI
  • Q9. You see this bisleri water bottle. Tell me some innovative ideas to recreate it and make me convince to buy your idea and not this one.
  • Ans. 

    Reinvent the Bisleri bottle with a sleek design, eco-friendly materials, and a built-in filter for on-the-go purification.

    • Use biodegradable materials like bamboo or cornstarch-based plastics

    • Incorporate a minimalist design with a unique shape or texture

    • Add a filter to purify water from any source

    • Offer customization options like color or engraving

    • Include a reusable straw or spout for easy drinking

  • Answered by AI
  • Q10. What was the most challenging situation that you think you solved very effectively?
  • Q11. Some questions from Database management system.
  • Q12. Asked me to write code for database connection from my project of website development based on java,html, sql,css, JavaScript
  • Q13. Will you be available at any time we call you or send you to another city for projects?
  • Q14. What do you expect from us?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with all such questions. Just be confident, be you and be fluent with your language. Try not to give negative impact with any of your answers and be positive.
Interviewer will try to trap you in situations but you have to get out of them and give them a convincing answers. I know there are some questions whose answers we don’t really know correctly, so try not to give false answers and rather just say confidently that you do not know about it.
This is it.
All the best to all those reading this.

I applied via Campus Placement and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1.  quicksort algorithm
  • Ans. 

    Quicksort is a sorting algorithm that uses divide and conquer approach to sort an array.

    • It selects a pivot element and partitions the array around the pivot.

    • It recursively sorts the sub-arrays created by partitioning.

    • It has an average time complexity of O(nlogn) and worst case time complexity of O(n^2).

  • Answered by AI
  • Q2. How to achieve abstraction
  • Ans. 

    Abstraction can be achieved by hiding unnecessary details and only exposing essential features.

    • Identify the essential features of the system

    • Hide unnecessary details by encapsulating them

    • Use interfaces to define essential features

    • Implement the interfaces to provide functionality

    • Example: A car's interface is the steering wheel, pedals, and dashboard. The engine and transmission are encapsulated.

    • Example: A software interf...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - OOPs concept and data structure is very important

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Medium

Due to pandemic placement process went virtual. Test was conducted at 10 A.M.

  • Q1. 

    Decode String Problem Statement

    Your task is to decode a given encoded string back to its original form.

    Explanation:

    An encoded string format is <count>[encoded_string], where the 'encoded_string...

  • Ans. 

    The task is to decode an encoded string back to its original form by repeating the encoded string 'count' times.

    • Parse the input string to extract the count and the encoded string within the brackets

    • Use recursion to decode the encoded string by repeating it 'count' times

    • Handle nested encoded strings by recursively decoding them

    • Output the decoded string for each test case

  • Answered by AI
  • Q2. 

    Detect and Remove Loop in Linked List

    For a given singly linked list, identify if a loop exists and remove it, adjusting the linked list in place. Return the modified linked list.

    Expected Complexity:

    A...

  • Ans. 

    Detect and remove loop in a singly linked list in place with O(n) time complexity and O(1) space complexity.

    • Use Floyd's Cycle Detection Algorithm to identify the loop in the linked list.

    • Once the loop is detected, use two pointers approach to find the start of the loop.

    • Adjust the pointers to remove the loop and return the modified linked list.

    • Example: For input 5 2 and 1 2 3 4 5, output should be 1 2 3 4 5.

  • Answered by AI
  • Q3. 

    Infix to Postfix Conversion

    You are provided with a string EXP which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.

    Explanation:

    An i...

  • Ans. 

    Convert a given infix expression to postfix expression.

    • Use a stack to keep track of operators and operands.

    • Follow the rules of precedence for operators (*, / have higher precedence than +, -).

    • Handle parentheses by pushing them onto the stack and popping when closing parenthesis is encountered.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Due to pandemic placement process went virtual. Test was conducted at 2 P.M.

  • Q1. 

    Find First Repeated Character in a String

    Given a string 'STR' composed of lowercase English letters, identify the character that repeats first in terms of its initial occurrence.

    Example:

    Input:
    STR =...
  • Ans. 

    The task is to find the first repeated character in a given string of lowercase English letters.

    • Iterate through the string and keep track of characters seen so far in a set.

    • If a character is already in the set, return it as the first repeated character.

    • If no repeated character is found, return '%'.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Video Call interview where the interview happened for around 45 minutes.

  • Q1. 

    Maximum Sum Path in a Binary Tree Problem Statement

    You are provided with a binary tree consisting of N nodes where each node has an integer value. The task is to determine the maximum sum achievable by a...

  • Ans. 

    Find the maximum sum achievable by a simple path between any two nodes in a binary tree.

    • Traverse the binary tree to find all possible paths and calculate their sums.

    • Keep track of the maximum sum encountered during traversal.

    • Consider paths that may include the same node twice.

    • Implement a recursive function to explore all paths in the tree.

    • Optimize the solution to avoid redundant calculations.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Video Call interview where the interview happened for around 30 minutes.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Associate Software Engineer in HyderabadEligibility criteriaAbove 8 CGPADelhivery interview preparation:Topics to prepare for the interview - Java, Operating Systems, Git, LInux, Networking, C++, Python, DataStructures and Algorithms, OOPS, Dynamic ProgrammingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practise 5 problems daily from websites like hackerrank, codechef, codeforces
Tip 2 : Participate in codechef, codeforces contest.
Tip 3 : Attend mock interviews and should have good communication skills.

Application resume tips for other job seekers

Tip 1 : Maintain atleast 2 different projects, write powerful summary statement.
Tip 2 : Maintain skills relevant to job description, include relevant experience.

Final outcome of the interviewRejected

Skills evaluated in this interview

Round 1 - Aptitude Test 

20 questions of aptitude

Round 2 - Coding Test 

Hard

Round 3 - Coding Test 

Very hard

Round 4 - HR 

(6 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What is your family background?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Easy to crack. Coading should be practiced

I applied via Campus Placement and was interviewed in Mar 2022. There were 4 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 - Coding Test 

Aptitude, coding assessment with string and array

Round 3 - Technical 

(4 Questions)

  • Q1. Explain OSI Model with different layers
  • Ans. 

    The OSI Model is a conceptual framework used to describe network communication.

    • The OSI Model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with adjacent layers.

    • The Physical layer deals with the physical transmission of data, while the Application layer deals with user interfaces and applications.

    • Examples of protocols at ...

  • Answered by AI
  • Q2. OOPS concepts and how are they implemented
  • Ans. 

    OOPS concepts are fundamental principles of object-oriented programming that help in designing and implementing software systems.

    • Encapsulation - bundling of data and methods that operate on that data

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on multiple forms

    • Abstraction - hiding implementation details and showing only functionality

    • Examples - Java, C++, Python, Ruby

  • Answered by AI
  • Q3. About the shortcomings faced during project making.
  • Q4. Why is cloud computing preferred
  • Ans. 

    Cloud computing is preferred for its scalability, cost-effectiveness, and accessibility.

    • Scalability: Cloud computing allows for easy scaling up or down of resources as needed.

    • Cost-effectiveness: Cloud computing eliminates the need for expensive hardware and maintenance costs.

    • Accessibility: Cloud computing allows for remote access to data and applications from anywhere with an internet connection.

    • Examples: Amazon Web Se

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What is future planning
  • Ans. 

    Future planning is the process of setting goals and creating a roadmap to achieve them.

    • It involves identifying long-term objectives and breaking them down into smaller, achievable steps.

    • It requires considering potential obstacles and developing contingency plans.

    • It helps individuals and organizations stay focused and on track towards their desired outcomes.

    • Examples include creating a five-year career plan or developing

  • Answered by AI
  • Q2. If I am versatile to work in support or implementation

Interview Preparation Tips

Topics to prepare for Ericsson Associate Software Engineer interview:
  • computer networks
  • Cloud Computing
Interview preparation tips for other job seekers - Study Computer Networks and cloud basic concepts

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jan 2022. 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. What is your knowledge about Sql ?
  • Ans. 

    I have a good understanding of SQL and its syntax.

    • Familiar with creating and modifying tables, inserting and updating data, and querying data using SELECT statements

    • Knowledge of SQL functions and operators

    • Experience with joins and subqueries

    • Understanding of database normalization and data integrity constraints

    • Proficient in using SQL in various database management systems such as MySQL, Oracle, and SQL Server

  • Answered by AI
  • Q2. What is your project dream

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a good platform to help a employers to search a new jobs

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Group Discussion 

Corona Pandemic, digitalization

Round 3 - Aptitude Test 

Qualitative and quantitative questions + gmat

Round 4 - Technical 

(1 Question)

  • Q1. Dbms, os, programming

Tell us how to improve this page.

Mphasis-Wyde Associate Software Engineer Salary
based on 4 salaries
₹3.3 L/yr - ₹4 L/yr
38% less than the average Associate Software Engineer Salary in India
View more details

Mphasis-Wyde Associate Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

1.0

Salary

5.0

Job security

5.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
4 salaries
unlock blur

₹4.5 L/yr - ₹14 L/yr

Associate Software Engineer
4 salaries
unlock blur

₹3.2 L/yr - ₹4 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹8.4 L/yr - ₹18 L/yr

Delivery Module Lead
3 salaries
unlock blur

₹16.6 L/yr - ₹30 L/yr

Explore more salaries
Compare Mphasis-Wyde with

BYJU'S

3.1
Compare

Ericsson

4.1
Compare

Dell

3.9
Compare

Nagarro

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