Upload Button Icon Add office photos

Filter interviews by

Majesco Technical Lead Interview Questions and Answers

Updated 5 Jun 2023

Majesco Technical Lead Interview Experiences

1 interview found

Interview experience
5
Excellent
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 - Technical 

(2 Questions)

  • Q1. Spring container, spring boot
  • Q2. Use case diagram for currency conversion
  • Ans. 

    Currency conversion use case diagram for Tech Lead interview

    • Actors: User, Currency Converter System

    • Use Cases: Enter amount, Select source currency, Select target currency, Convert currency, Display converted amount

    • Relationships: User interacts with Currency Converter System to perform currency conversion

    • Include: Error handling for invalid inputs

    • Extend: Historical exchange rate lookup feature

  • 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 Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic knowledge of your skills
  • Q2. Scenario based questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. SQL technical question.
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion, joining date negotiation and Joining Bonus.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect and ready with your skills whatever you have.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell us about yourself
  • Q2. Lot of questions on SQL and Linux commands
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell us about yourself
  • Q2. It was a manager round combined with some technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing much, stick to your basics and prepare all the concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Coding Test 

Questions about java concurrency framework, java 8 and 11 features, Code chef coding problem

Round 2 - Technical 

(2 Questions)

  • Q1. Discussion about current project architecture
  • Q2. Microservices and cloud foundry
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. React Life cycle methods
  • Q2. Machine coding with crypto price api
  • Ans. 

    Using a crypto price API to fetch and display real-time cryptocurrency prices in a machine coding project.

    • Utilize a crypto price API to fetch real-time cryptocurrency prices

    • Implement error handling for API requests

    • Display the fetched prices in a user-friendly format

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mix of coding, theory and design questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Solid principle implemantion in c#
  • Ans. 

    Solid principles are a set of design principles that help make software more maintainable, flexible, and scalable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subclasses wi...

  • Answered by AI
  • Q2. Write a code for Entity framework DB connection
  • Ans. 

    Code snippet for Entity Framework DB connection

    • Install Entity Framework NuGet package

    • Create a DbContext class

    • Define DbSet properties for each entity

    • Configure connection string in app.config/web.config

    • Use DbContext to interact with the database

  • Answered by AI
  • Q3. Get 3 rd highest salary
  • Ans. 

    To get the 3rd highest salary, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query with 'ORDER BY salary DESC' to sort salaries in descending order.

    • Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and get the 3rd highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q4. Why we using interface in C#
  • Ans. 

    Interfaces in C# provide a way to define a contract for classes to implement, promoting code reusability and flexibility.

    • Interfaces allow for multiple inheritance in C# by allowing a class to implement multiple interfaces.

    • Interfaces help in achieving loose coupling between classes, making the code more maintainable and testable.

    • Interfaces are used to define common behavior that multiple classes can share, promoting cod...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why you want to change the company

Skills evaluated in this interview

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

(1 Question)

  • Q1. Work experience
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2023. 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 

Hackerrank test with combination of MCQ and java program coding.

Round 3 - Technical 

(1 Question)

  • Q1. L1 technical and L2 client technical rounds. Asked questions from core java, spring boot, micro service and some java coding questions.
Round 4 - HR 

(1 Question)

  • Q1. Basic questions on personal details and overview about company and salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are looking for java development opportunity then prepare more java coding questions. Concentrate more on collection framework coding part.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. 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 

(3 Questions)

  • Q1. Builder design pattern in java
  • Ans. 

    Builder design pattern is a creational design pattern used to construct complex objects step by step.

    • Builder pattern separates the construction of a complex object from its representation.

    • It allows the same construction process to create different representations of the object.

    • Useful when there are multiple ways to construct an object or when the object creation process is complex.

    • Example: StringBuilder in Java allows ...

  • Answered by AI
  • Q2. Docker, MQ series involved
  • Q3. JOIN Query with country , emp name
  • Ans. 

    JOIN query to retrieve country and employee name

    • Use JOIN keyword to combine data from multiple tables

    • Specify the columns to select from each table

    • Use ON keyword to specify the relationship between the tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - we need to work in depth in Design patterns , Micro services concepts

Skills evaluated in this interview

Majesco Interview FAQs

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

Some of the top questions asked at the Majesco Technical Lead interview -

  1. Use case diagram for currency convers...read more
  2. Spring container, spring b...read more

Tell us how to improve this page.

Majesco Technical Lead Salary
based on 20 salaries
₹11.3 L/yr - ₹24 L/yr
At par with the average Technical Lead Salary in India
View more details

Majesco Technical Lead Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

5.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
520 salaries
unlock blur

₹5.1 L/yr - ₹17.4 L/yr

Lead Engineer
376 salaries
unlock blur

₹7 L/yr - ₹22.5 L/yr

Software Engineer
235 salaries
unlock blur

₹3 L/yr - ₹8.9 L/yr

Senior Test Engineer
226 salaries
unlock blur

₹4.8 L/yr - ₹12 L/yr

Senior Leader Engineer
90 salaries
unlock blur

₹12.4 L/yr - ₹27 L/yr

Explore more salaries
Compare Majesco with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

3.6
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