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 experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contain 40 question which is very easy

Round 2 - Coding Test 

It contain 3 coding question

Round 3 - One-on-one 

(5 Questions)

  • Q1. Introduction About Your Self and About Project
  • Q2. Two dsa question of leetcode
  • Q3. Basics Concept on dsa
  • Q4. From which platform you do coding
  • Q5. Simple Simple Question

Interview Preparation Tips

Topics to prepare for Nagarro Associate Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Very good company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. What are joins in sql
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

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

  • Answered by AI
  • Q2. What is OOP features
  • Ans. 

    OOP features are key concepts in Object-Oriented Programming that include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: Ability for a class to inherit properties and behavior from another class

    • Polymorphism: Ability for objects to be treated as instances of their parent class or their own class

    • Abstractio...

  • Answered by AI
  • Q3. Primary key , foreign key
  • Q4. Exception in java
  • Ans. 

    An exception in Java is a runtime error that disrupts the normal flow of a program.

    • Exceptions are objects that are thrown when an error occurs during the execution of a program.

    • They can be caught and handled using try-catch blocks.

    • Common types of exceptions in Java include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

There are 2 sections one is Output guess and Another one is Quantitative

Round 2 - Coding Test 

I didn't attend 2nd round..i was eliminated in 1st round

Interview Preparation Tips

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

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

Round 1 - Coding Test 

Via placement got this oppurtunity asked base questions
Coding test on java for factorial all ways
Database qstns

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

English
Critical reasoning and problem solving

Round 2 - Technical 

(1 Question)

  • Q1. Based on resume oops concepts about your work experience and your projects
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
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:
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 

(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

I was interviewed 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. Stack Solution

    The idea is to maintain two Stacks. One will store the integers i.e. number of times the current string is repeated and the other one will store the strings itself. 

    We use a simple idea and always evaluate the innermost brackets first. We traverse through our encoded string

    • If we encounter an integer, we push it onto our ‘integerStack’.
    • If we encounter a character, then we simply append it to the ‘curr...
  • Answered Anonymously
  • 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. Outer And Inner Loop

    We are going to have two loops outer-loop and inner-loop 

    1. Maintain a count of the number of nodes visited in outer loop.
    2. For every node of the outer-loop, start the inner loop from the head and maintain a  prev node to store the previous node of the current outer loop node.
    3. If the inner-loop visits the node next to the outer-loop node, then a cycle exist,we will simply set the prev node's nex...
  • Answered Anonymously
  • 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. Stack

    We will scan the expression from left to write and if we encounter an operand we will append it to our answer. If we encounter an operator we will pop all the operators with equal or higher precedence and append them to our answer. And push the current operator. In the end, we will empty the stack.

    Order of precedence = [ ‘^’, ‘*’ and ‘/’, ‘+’ and ‘-’, ‘(’, ‘)’]

    Order of precedence [ link ]

    The algorithm will be-

    1. ANS ...
  • Answered Anonymously
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. Brute Force

    The basic approach is to check each character in the rest of the string and if it is repeated then simply print it.

     

    The steps are as follows:

     

    • Start traversing through the string from ‘i’ = 0 to ‘i’ < length of string
      • Start traversing with another variable from ‘j’ = ‘i’ to ‘j’ < length of string
        • Check if the character at ‘i’ is equal to the character at ‘j’
          • If yes then return it.
          • If no, then cont...
  • Answered Anonymously
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. Recursive Solution

    First of all, we need to observe that for any simple path in a Binary tree, there is one and only one node at the maximum height. So, the idea is to fix each node as the highest node in a path and then find the maximum sum path having the current node as the highest node. The final answer will be the maximum value among all the path sum values for each node. To find the maximum sum path for a particul...

  • Answered Anonymously
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

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Coding Test 

Aptitude test along with CS fundamentals and Coding problems

Round 2 - One-on-one 

(2 Questions)

  • Q1. Real life application of data structures
  • Ans. 

    Data structures like arrays and linked lists are used in real life applications such as social media networks, databases, and GPS systems.

    • Social media networks use arrays to store user profiles and linked lists to manage friend connections.

    • Databases use data structures like B-trees and hash tables to efficiently store and retrieve data.

    • GPS systems use graphs to represent road networks and find the shortest path between

  • Answered by AI
  • Q2. Find missing number in array of n size where numbers are from 1 to n
  • Ans. 

    Use the formula for sum of first n natural numbers to find the missing number in the array.

    • Calculate the sum of first n natural numbers using the formula n*(n+1)/2

    • Calculate the sum of all numbers in the array

    • Subtract the sum of array from the sum of first n natural numbers to find the missing number

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have your fundamentals cleared. And have decent communication skills.

Skills evaluated in this interview

Tell us how to improve this page.

Mphasis-Wyde Associate Software Engineer Salary
based on 4 salaries
₹3.2 L/yr - ₹4 L/yr
37% 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

Delhivery

3.9
Compare

Ekart Logistics

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