Upload Button Icon Add office photos

Filter interviews by

MITS GLOBAL CONSULTING Senior Java Developer Interview Questions and Answers

Updated 17 Aug 2024

MITS GLOBAL CONSULTING Senior Java Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basics about core java
  • Q2. Spring boot framework structure
Round 2 - HR 

(1 Question)

  • Q1. Personal details

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Sep 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 - One-on-one 

(1 Question)

  • Q1. Create a spring boot project and implement crud operation for user table.
  • Ans. 

    Implement CRUD operations for user table in a Spring Boot project.

    • Create a Spring Boot project using Spring Initializr

    • Define a User entity with necessary fields and annotations

    • Create a UserRepository interface extending JpaRepository

    • Implement methods in a UserService class for CRUD operations

    • Use RESTful endpoints to expose the CRUD operations

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. How the communication is happening between the microservices ?
  • Ans. 

    Communication between microservices is typically done through APIs, messaging queues, or service meshes.

    • Microservices communicate with each other through APIs, which allow them to send and receive data over the network.

    • Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

    • Service meshes like Istio or Linkerd can handle communication between microservices by managing tr...

  • Answered by AI
  • Q2. Explain SAGA design pattern
  • Ans. 

    SAGA design pattern is used to manage distributed transactions in microservices architecture.

    • SAGA breaks down a transaction into a series of smaller, independent transactions.

    • Each step in the SAGA pattern is a separate transaction that can be rolled back if needed.

    • SAGA ensures eventual consistency by coordinating the transactions across multiple services.

    • Example: In an e-commerce application, SAGA can be used to handle...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion

Skills evaluated in this interview

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 Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Remove duplicate from list

Round 2 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Stack and memory changes
Round 3 - One-on-one 

(1 Question)

  • Q1. Spring boot coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java oops concepts
Round 2 - HR 

(1 Question)

  • Q1. Self intro for yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is very impressive work on Josh technology assessment because we learn many new skills.

Round 2 - Technical 

(2 Questions)

  • Q1. What is api and how it is work ?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods and data formats that applications can use to request and exchange information.

    • APIs can be used to access services provided by other software applications, such as retrieving data from a database or sending notifications.

    • Examples of APIs ...

  • Answered by AI
  • Q2. What is software development life cycle and which steps are following?
  • Ans. 

    Software development life cycle (SDLC) is a process used by software developers to design, develop, and test software.

    • 1. Planning: Define the project scope, requirements, and objectives.

    • 2. Analysis: Gather and analyze user requirements.

    • 3. Design: Create a detailed design of the software.

    • 4. Implementation: Develop the software based on the design.

    • 5. Testing: Test the software for bugs and issues.

    • 6. Deployment: Release t...

  • Answered by AI

Skills evaluated in this interview

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

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

Moderate difficult challenge in control

Round 3 - One-on-one 

(1 Question)

  • Q1. Describe your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare aptitude

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Path Queries Problem Statement

    Consider a weighted, undirected graph with 'V' vertices numbered from 1 to 'V' and 'E' bidirectional edges. You are tasked with handling 'Q' queries. For each query, you are...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered Anonymously
  • Q2. 

    Merge Sort Algorithm Problem Statement

    Your task is to sort a sequence of numbers stored in the array ‘ARR’ in non-descending order using the Merge Sort algorithm.

    Explanation:

    Merge Sort is a divide-an...

  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered Anonymously
  • Q3. 

    Rat in a Maze: All Paths Problem

    You are provided with an N * N maze where a rat is positioned at starting cell MAZE[0][0]. The goal is to determine and print all possible paths that the rat can take to r...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. C#
  • Q2. Asp.net core
  • Q3. Sql
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Code on Fibonacci series, sum of pairs of number equal to the given number.

MITS GLOBAL CONSULTING Interview FAQs

How many rounds are there in MITS GLOBAL CONSULTING Senior Java Developer interview?
MITS GLOBAL CONSULTING interview process usually has 2 rounds. The most common rounds in the MITS GLOBAL CONSULTING interview process are Technical and HR.
What are the top questions asked in MITS GLOBAL CONSULTING Senior Java Developer interview?

Some of the top questions asked at the MITS GLOBAL CONSULTING Senior Java Developer interview -

  1. Spring boot framework struct...read more
  2. Basics about core j...read more

Tell us how to improve this page.

MITS GLOBAL CONSULTING Senior Java Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Senior Software Engineer
83 salaries
unlock blur

₹5.5 L/yr - ₹18 L/yr

Software Engineer
38 salaries
unlock blur

₹4.7 L/yr - ₹17 L/yr

Software Developer
36 salaries
unlock blur

₹3.7 L/yr - ₹10.6 L/yr

Senior Software Developer
19 salaries
unlock blur

₹6.8 L/yr - ₹16 L/yr

Senior Business Analyst
12 salaries
unlock blur

₹8.5 L/yr - ₹19 L/yr

Explore more salaries
Compare MITS GLOBAL CONSULTING with

Deloitte

3.8
Compare

KPMG India

3.5
Compare

PwC

3.4
Compare

Ernst & Young

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