Upload Button Icon Add office photos

Majesco

Compare button icon Compare button icon Compare

Filter interviews by

Majesco Interview Questions, Process, and Tips

Updated 21 Feb 2025

Top Majesco Interview Questions and Answers

View all 25 questions

Majesco Interview Experiences

Popular Designations

28 interviews found

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 Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by providing a way to mock dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • Answered by AI
  • Q2. Brief description about your current project architecture.
  • Ans. 

    Our current project architecture follows a microservices design pattern with Docker containers for scalability and flexibility.

    • Microservices architecture

    • Docker containers for scalability

    • RESTful APIs for communication

    • Kubernetes for orchestration

  • Answered by AI

Skills evaluated in this interview

Top Majesco Senior Software Engineer Interview Questions and Answers

Q1. 1. Diff betn case and decode 2. Primary unique keys 3. Diff betn proc and function 4. Query for 2nd highest sal dept wise 5. Query to find sum witbout using aggregate 6. Queries on count distinct 7. Updating 2 tables in a single query
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Sep 2024

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

I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is Software Testing?
  • Ans. 

    Software testing is the process of evaluating a software application to ensure it meets specified requirements and functions correctly.

    • Identifying defects or bugs in the software

    • Verifying that the software meets the specified requirements

    • Ensuring the software functions correctly under different conditions

    • Types of software testing include unit testing, integration testing, system testing, and acceptance testing

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What is underwriting?
  • Ans. 

    Underwriting is the process of evaluating the risk of insuring a person or asset and determining the premium to be charged.

    • Underwriting involves assessing the risk associated with insuring a particular individual or asset.

    • Factors such as age, health, occupation, and lifestyle are considered during underwriting.

    • The underwriter determines the premium to be charged based on the assessed risk.

    • Underwriting is commonly used ...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Why we should hire you?
  • Ans. 

    I have a proven track record of successfully leading engineering teams to deliver high-quality products on time and within budget.

    • Strong leadership skills demonstrated through successful project completions

    • Extensive experience in engineering and technical knowledge

    • Ability to collaborate effectively with cross-functional teams

    • Proven track record of meeting deadlines and delivering high-quality results

  • Answered by AI

Skills evaluated in this interview

Top Majesco Lead Engineer Interview Questions and Answers

Q1. What is the view and type of view?
View answer (2)

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain the working of Hashmap
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • In case of collisions, separate chaining or open addressing techniques are used to handle them.

    • Example: HashMap map = new HashMap<>(); ma

  • Answered by AI
  • Q2. Explain Inheritance in Java
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behavior from another class.

    • Allows a class to inherit fields and methods from another class

    • Promotes code reusability and reduces redundancy

    • Uses the 'extends' keyword to establish a parent-child relationship

    • Child class can access non-private members of the parent class

  • Answered by AI
  • Q3. Explain Interface in Java
  • Ans. 

    Interface in Java is a blueprint of a class that defines a set of methods without implementation.

    • Interfaces can have abstract methods and constants

    • Classes can implement multiple interfaces

    • Interfaces are used for achieving abstraction and multiple inheritance

  • Answered by AI
  • Q4. Collection framework in detail
  • Ans. 

    Collection framework in Java provides a set of interfaces and classes to store and manipulate groups of objects.

    • Includes interfaces like List, Set, Map

    • Classes like ArrayList, LinkedList, HashSet, HashMap

    • Provides methods for adding, removing, and accessing elements

    • Allows for easy iteration and manipulation of collections

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core java and collections framework well

Skills evaluated in this interview

Top Majesco Senior Software Engineer Interview Questions and Answers

Q1. 1. Diff betn case and decode 2. Primary unique keys 3. Diff betn proc and function 4. Query for 2nd highest sal dept wise 5. Query to find sum witbout using aggregate 6. Queries on count distinct 7. Updating 2 tables in a single query
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

1 hour Time and Distance , Percentage, odd man out , Area, Problem on Ages.

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about your self , projects why are you leaving old organization
  • Q2. Oops concepts , what is Garbage collection
  • Ans. 

    Garbage collection is an automatic memory management process in which the system frees up memory occupied by objects that are no longer in use.

    • Garbage collection is a feature of many programming languages, including Java and C#.

    • It helps prevent memory leaks and reduces the burden of manual memory management.

    • The garbage collector identifies and releases memory that is no longer referenced by any active objects.

    • It works ...

  • Answered by AI
  • Q3. What is Variable
  • Ans. 

    A variable is a named storage location in a computer's memory that can hold a value.

    • Variables are used to store and manipulate data in a program.

    • They have a name, a type, and a value.

    • The value of a variable can be changed during program execution.

    • Variables can be used to perform calculations, store user input, or hold intermediate results.

    • Examples: int age = 25; float temperature = 98.6; string name = 'John';

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about Yourself
  • Q2. How soon you can join

Top Majesco Senior Software Engineer Interview Questions and Answers

Q1. 1. Diff betn case and decode 2. Primary unique keys 3. Diff betn proc and function 4. Query for 2nd highest sal dept wise 5. Query to find sum witbout using aggregate 6. Queries on count distinct 7. Updating 2 tables in a single query
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Majesco interview questions for popular designations

 Senior Software Engineer

 (6)

 Lead Engineer

 (5)

 Software Engineer

 (4)

 Associate Software Engineer

 (1)

 Department Manager

 (1)

 Developer

 (1)

 Qa Software Test Engineer

 (1)

 Senior Architect

 (1)

I applied via Referral and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions were asked, oop, c#, sql
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic questions, scrum and cicd
Round 3 - HR 

(1 Question)

  • Q1. Basic discussion, expected salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good, good technical interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Get interview-ready with Top Majesco Interview Questions

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 - Aptitude Test 

30 mins 30 questions no negative marking attend all easy to pass

Round 3 - HR 

(2 Questions)

  • Q1. Discussuon with hr on pay scale and job related things. Conpany growth and polciies explained.
  • Q2. Company growth and policies told

Interview Preparation Tips

Interview preparation tips for other job seekers - Good knowledge required on technical side. Inteview happens very strong and fast process

Top Majesco Lead Engineer Interview Questions and Answers

Q1. What is the view and type of view?
View answer (2)

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping &amp; closing coil of vcb?
View answer (8)

Jobs at Majesco

View all
Round 1 - Technical 

(2 Questions)

  • Q1. Basic technical questions
  • Q2. Tech questions related to respective technology
Round 2 - HR 

(1 Question)

  • Q1. Discussion of salary and previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic interview questions related to particular technologies

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Developer Interview Questions & Answers

user image Anonymous

posted on 20 Jul 2024

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

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

1 hr of interview and asked all the end to end questions

Developer Interview Questions asked at other Companies

Q1. Which programming language do you use regular in work
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Project management
  • Q2. Stakeholder management
Round 2 - One-on-one 

(1 Question)

  • Q1. Project management
Round 3 - HR 

(1 Question)

  • Q1. About aspirations

Department Manager Interview Questions asked at other Companies

Q1. Have you ever been to reliance Retail? What is the difference between d mart and Reliance Retail? Quick numerical questions like 76+53 etc . Group discussion.
View answer (9)

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Dec 2022

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

I was interviewed before Dec 2021.

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 

(6 Questions)

  • Q1. Knowledge of plsql concept like trigger , statment?
  • Q2. Store procedure vs function vs packages
  • Ans. 

    Stored procedures, functions, and packages are database objects used to encapsulate and execute code.

    • Stored procedures are precompiled SQL statements that can be executed multiple times.

    • Functions return a single value and can be used in SQL statements.

    • Packages are a collection of related procedures, functions, and variables.

    • Stored procedures and functions can be used to improve performance by reducing network traffic.

    • P...

  • Answered by AI
  • Q3. What is cursor? What are the attributes of cursor?
  • Ans. 

    A cursor is a database object used to manipulate data in a result set.

    • A cursor is used to traverse through a result set one row at a time.

    • It can be used to update or delete rows in a result set.

    • Attributes of a cursor include its name, type, scrollability, and sensitivity.

    • Examples of cursor types include forward-only, static, dynamic, and keyset-driven.

  • Answered by AI
  • Q4. What are joins? Type of joins?
  • Ans. 

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

    • Types of joins include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all the rows from the left table and matching rows from the right table.

    • Right join returns all the rows from the right table and matching rows from the left table.

    • Full outer...

  • Answered by AI
  • Q5. What is the view and type of view?
  • Ans. 

    The question is unclear. Please provide more context.

    • Answered by AI
    • Q6. What is index and type of indexes?
    • Ans. 

      Indexes are data structures that improve the speed of data retrieval operations in a database.

      • Indexes are created on one or more columns of a table.

      • They can be of different types such as B-tree, hash, bitmap, etc.

      • B-tree indexes are the most commonly used type of index.

      • Indexes can be unique or non-unique.

      • They can also be clustered or non-clustered.

      • Clustered indexes determine the physical order of data in a table.

      • Non-clu...

    • Answered by AI
    Round 3 - Behavioral 

    (4 Questions)

    • Q1. Tell me about yourself?
    • Ans. 

      I am an experienced Lead Engineer with a strong background in software development and team management.

      • Over 10 years of experience in software engineering

      • Expertise in leading and managing cross-functional teams

      • Proficient in various programming languages such as Java, C++, and Python

      • Proven track record of delivering high-quality software solutions on time and within budget

      • Strong problem-solving and analytical skills

      • Exce...

    • Answered by AI
    • Q2. Tell me about your past experience?
    • Ans. 

      I have 8 years of experience as a Lead Engineer in the software industry.

      • Led a team of 10 engineers in developing a new software product from scratch

      • Implemented agile methodologies to improve team efficiency and project delivery

      • Designed and implemented scalable and robust software architectures

      • Collaborated with cross-functional teams to gather requirements and ensure successful project execution

      • Mentored junior engineer...

    • Answered by AI
    • Q3. Why should we hire you?
    • Ans. 

      I have a strong technical background, leadership skills, and a proven track record of successfully leading engineering teams.

      • I have extensive experience in the field of engineering and have successfully led multiple projects from start to finish.

      • I have a deep understanding of the technical aspects of the role and can effectively communicate and collaborate with cross-functional teams.

      • I have a track record of delivering...

    • Answered by AI
    • Q4. What are your strengths and weakness?
    • Ans. 

      My strengths include problem-solving, leadership, and technical expertise. My weaknesses include impatience and a tendency to overthink.

      • Strength: Strong problem-solving skills - I enjoy analyzing complex problems and finding innovative solutions.

      • Strength: Leadership abilities - I have successfully led teams and projects, ensuring effective collaboration and achieving goals.

      • Strength: Technical expertise - I have a deep ...

    • Answered by AI
    Round 4 - One-on-one 

    (1 Question)

    • Q1. What are expections?
    • Ans. 

      Expectations are the anticipated outcomes or results of a particular situation or action.

      • Expectations are often based on past experiences or cultural norms.

      • They can be explicit or implicit, and can vary greatly between individuals.

      • Unmet expectations can lead to disappointment, frustration, or conflict.

      • Clear communication and managing expectations can help avoid misunderstandings.

      • Examples of expectations include job per...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Plsql is mandatory. Oracle knowledge is advantageous

    Skills evaluated in this interview

    Top Majesco Lead Engineer Interview Questions and Answers

    Q1. What is the view and type of view?
    View answer (2)

    Lead Engineer Interview Questions asked at other Companies

    Q1. What is the resistance value of tripping &amp; closing coil of vcb?
    View answer (8)

    Majesco Interview FAQs

    How many rounds are there in Majesco interview?
    Majesco interview process usually has 2-3 rounds. The most common rounds in the Majesco interview process are Technical, One-on-one Round and HR.
    How to prepare for Majesco 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 Majesco. The most common topics and skills that interviewers at Majesco expect are Agile, SQL, Coding, Javascript and Hibernate.
    What are the top questions asked in Majesco interview?

    Some of the top questions asked at the Majesco interview -

    1. 1. Diff betn case and decode 2. Primary unique keys 3. Diff betn proc and func...read more
    2. What is hands on experience ? Microservice design pattern, security, What are t...read more
    3. What is the view and type of vi...read more
    How long is the Majesco interview process?

    The duration of Majesco interview process can vary, but typically it takes about less than 2 weeks to complete.

    Tell us how to improve this page.

    Majesco Interview Process

    based on 25 interviews

    Interview experience

    4.3
      
    Good
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Infosys Interview Questions
    3.6
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    LTIMindtree Interview Questions
    3.8
     • 3k Interviews
    Hexaware Technologies Interview Questions
    3.6
     • 720 Interviews
    Persistent Systems Interview Questions
    3.5
     • 611 Interviews
    Cyient Interview Questions
    3.7
     • 283 Interviews
    CitiusTech Interview Questions
    3.4
     • 268 Interviews
    View all

    Majesco Reviews and Ratings

    based on 347 reviews

    3.5/5

    Rating in categories

    3.2

    Skill development

    3.3

    Work-life balance

    3.5

    Salary

    3.1

    Job security

    3.5

    Company culture

    3.0

    Promotions

    3.2

    Work satisfaction

    Explore 347 Reviews and Ratings
    Lead Support Engineer

    Remote

    5-8 Yrs

    â‚ą 12-14 LPA

    Senior Developer - Distribution Management

    Navi Mumbai

    8-12 Yrs

    â‚ą 20-30 LPA

    Lead Engineer, Products

    Kolkata,

    Mumbai

    +5

    9-10 Yrs

    â‚ą 8.1-22.53 LPA

    Explore more jobs
    Senior Software Engineer
    514 salaries
    unlock blur

    â‚ą5.2 L/yr - â‚ą17 L/yr

    Lead Engineer
    379 salaries
    unlock blur

    â‚ą7 L/yr - â‚ą22.5 L/yr

    Senior Test Engineer
    215 salaries
    unlock blur

    â‚ą4.8 L/yr - â‚ą12 L/yr

    Software Engineer
    206 salaries
    unlock blur

    â‚ą2.4 L/yr - â‚ą9 L/yr

    Senior Leader Engineer
    89 salaries
    unlock blur

    â‚ą12 L/yr - â‚ą27 L/yr

    Explore more salaries
    Compare Majesco with

    TCS

    3.7
    Compare

    Infosys

    3.6
    Compare

    Wipro

    3.7
    Compare

    Tech Mahindra

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