Upload Button Icon Add office photos
Engaged Employer

i

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

Mphasis Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mphasis Technical Dotnet Lead Interview Questions, Process, and Tips

Updated 15 Nov 2024

Mphasis Technical Dotnet Lead Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

10 min, simple question on programming skills

Round 2 - Technical 

(7 Questions)

  • Q1. Which Microservice communication pattern you have used?
  • Ans. 

    I have used the asynchronous messaging pattern for Microservice communication.

    • Implemented messaging queues like RabbitMQ or Kafka for decoupled communication

    • Used message brokers to enable communication between Microservices

    • Leveraged event-driven architecture for real-time updates and scalability

  • Answered by AI
  • Q2. Which Application Insight tool you have used?
  • Ans. 

    I have used Application Insights for monitoring and analyzing the performance of .NET applications.

    • Used Application Insights to track application performance metrics

    • Analyzed telemetry data to identify performance bottlenecks

    • Set up alerts and notifications for critical issues

    • Integrated Application Insights with Azure DevOps for continuous monitoring

  • Answered by AI
  • Q3. Caching Technique is used in your project
  • Ans. 

    We use in-memory caching technique in our project to improve performance and reduce database load.

    • In-memory caching is used to store frequently accessed data in memory for quick retrieval

    • Helps reduce database load and improve application performance

    • Examples: using MemoryCache in .NET, Redis caching, caching frequently accessed data like user profiles or product information

  • Answered by AI
  • Q4. Api Gateways is used in MicrosServices
  • Ans. 

    Yes, API Gateways are used in Microservices to manage and secure communication between services.

    • API Gateways act as a single entry point for clients to access multiple microservices

    • They handle authentication, authorization, rate limiting, logging, and monitoring

    • Examples of API Gateways include Kong, Apigee, and AWS API Gateway

  • Answered by AI
  • Q5. Which single sign on technology/Mechanism is used in project
  • Ans. 

    We are using OAuth 2.0 for single sign on in the project.

    • OAuth 2.0 is a widely used authorization framework that enables a third-party application to obtain limited access to an HTTP service.

    • It allows users to log in once and access multiple applications without having to log in again.

    • OAuth 2.0 provides secure delegated access to resources without sharing user credentials.

  • Answered by AI
  • Q6. What is JWT token,why we use it
  • Ans. 

    JWT token is a JSON Web Token used for secure transmission of information between parties.

    • JWT token is a compact and self-contained way to transmit information between parties.

    • It is digitally signed to verify its authenticity and integrity.

    • JWT tokens consist of three parts: header, payload, and signature.

    • They are commonly used for authentication and information exchange in web applications.

    • Example: JWT tokens are often

  • Answered by AI
  • Q7. How to implement exception handling and filters in .net core web api
  • Ans. 

    Exception handling and filters in .NET Core Web API

    • Use try-catch blocks to handle exceptions in the code

    • Implement global exception handling middleware to catch unhandled exceptions

    • Use filters like [Authorize] for authentication and [ValidateAntiForgeryToken] for CSRF protection

    • Create custom exception filters by implementing IExceptionFilter interface

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up on every thing from basic to advance

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Feb 2021. There were 3 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 

(1 Question)

  • Q1. Reverse a number without using loop
  • Ans. 

    Reverse a number without loop

    • Convert the number to a string

    • Use string slicing to reverse the string

    • Convert the reversed string back to a number

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your concepts. Your core technical knowledge should be very strong

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Android Architecture, Dependency Injection,
  • Q2. Life cycle of fragments
  • Ans. 

    The life cycle of fragments in Android refers to the stages of creation, addition, and removal of fragments in an activity.

    • Fragments are created using the onCreateView() method

    • They are added to an activity using the FragmentManager

    • They can be removed using the FragmentTransaction

    • The onDestroyView() method is called when a fragment is removed

    • Fragments can be retained during configuration changes using setRetainInstance(

  • Answered by AI
  • Q3. Core java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush your knowledge completely with projects undertaken in past

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 3 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 

(1 Question)

  • Q1. QA Related question ,
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion,Negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to join, Better Career growth, Less hike

I applied via Company Website and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Do you have sales experience ?
  • Ans. As an Ex-employee of suth for past 6 1/2 yrs, already I worked with Dell which was dealing with total sales
  • Answered by Krishnaveni Gopal
  • Q2. It was for a call taking profile ?
  • Q3. Though I was looking for a team lead or SME, call taking profile with level 2 is fine (as in every process 6 months of call taking profile was mandatory)

Interview Preparation Tips

Interview preparation tips for other job seekers - I was asked to join the training in a day or two. When I received offer letter after 5 days, the designation mentioned was CS associate phone. My 9 yrs of experience was put back to 0. Later when escalation was raised, I was told that it was a low bandwidth process & level cannot be changed. Please don't fool the candidate by the fake offer & later blame the employee saying, it was not a work culture to move from level 1 to level 2 in a short span

Interview Questionnaire 

2 Questions

  • Q1. Tell Introduction about you?
  • Q2. Difference between overloading and overriding
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as in the superclass.

    • Overloading is compile-time polymorphism while overriding is runtime polymorphism.

    • Overloading is used to provide different ways of calling the same method while overriding is used to provide a specific implementation of a method in a subcl...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Recursion Program - Flat an Object

Round 2 - One-on-one 

(3 Questions)

  • Q1. React Indept questions related to scalability, optimisation and coding best practices
  • Q2. Javascript - event loop, prototype, webpack, babel,
  • Q3. React Unit Testing, Redux
Round 1 - Technical 

(2 Questions)

  • Q1. Different data types in angular
  • Ans. 

    Angular supports various data types including string, number, boolean, object, array, and any.

    • String: 'hello world'

    • Number: 42

    • Boolean: true or false

    • Object: { name: 'John', age: 30 }

    • Array: [1, 2, 3]

    • Any: can be any data type

  • Answered by AI
  • Q2. Which version of css used
  • Ans. 

    CSS has multiple versions, the latest being CSS3.

    • CSS1 was released in 1996

    • CSS2 was released in 1998

    • CSS3 is the latest version

    • CSS3 has many new features like animations, transitions, and flexbox

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Versions of jQuey last used
  • Ans. 

    I have used jQuery versions 3.5.1 and 3.6.0 in my recent projects.

    • Used jQuery 3.5.1 for project A

    • Used jQuery 3.6.0 for project B

  • Answered by AI
  • Q2. Questions related to css only
Round 3 - HR 

(1 Question)

  • Q1. Willing to relocate or not

Interview Preparation Tips

Interview preparation tips for other job seekers - Panelist is not experienced they will ask anything.

Skills evaluated in this interview

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

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Performance optimisation
Round 2 - Technical 

(1 Question)

  • Q1. Lods,parameters
Round 3 - Behavioral 

(2 Questions)

  • Q1. Sql queries on analytical queries
  • Q2. Different constraints and join methods
  • Ans. 

    Different constraints and join methods in database queries

    • Constraints in database queries ensure data integrity and enforce rules on data

    • Join methods in database queries are used to combine rows from two or more tables based on a related column between them

    • Examples of constraints include primary key, foreign key, unique key, and check constraints

    • Examples of join methods include inner join, outer join (left, right, full

  • Answered by AI
Round 4 - Coding Test 

It was mostly on sub queries.

Skills evaluated in this interview

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

Round 1 - HR 

(2 Questions)

  • Q1. Do you thik you are confident enough to switch jobs?
  • Q2. How much experience you have working with excel?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be elegant and presentable in Video interview while going for the same.

Mphasis Interview FAQs

How many rounds are there in Mphasis Technical Dotnet Lead interview?
Mphasis interview process usually has 2 rounds. The most common rounds in the Mphasis interview process are Coding Test and Technical.
What are the top questions asked in Mphasis Technical Dotnet Lead interview?

Some of the top questions asked at the Mphasis Technical Dotnet Lead interview -

  1. how to implement exception handling and filters in .net core web ...read more
  2. which Microservice communication pattern you have us...read more
  3. Which single sign on technology/Mechanism is used in proj...read more

Tell us how to improve this page.

Mphasis Technical Dotnet Lead Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 800 Interviews
Nagarro Interview Questions
4.0
 • 762 Interviews
NTT Data Interview Questions
3.8
 • 625 Interviews
Publicis Sapient Interview Questions
3.5
 • 618 Interviews
GlobalLogic Interview Questions
3.6
 • 591 Interviews
View all
Software Engineer
6.4k salaries
unlock blur

₹2 L/yr - ₹9.5 L/yr

Senior Software Engineer
5.7k salaries
unlock blur

₹6 L/yr - ₹23.9 L/yr

Associate Software Engineer
4.7k salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Module Lead
2.4k salaries
unlock blur

₹9.5 L/yr - ₹36 L/yr

Transaction Processing Officer
2.3k salaries
unlock blur

₹1.4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Mphasis with

Cognizant

3.7
Compare

Wipro

3.7
Compare

Accenture

3.8
Compare

TCS

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