Upload Button Icon Add office photos
Engaged Employer

i

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

ZeMoSo Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ZeMoSo Technologies Senior Java Developer Interview Questions and Answers

Updated 3 Apr 2024

ZeMoSo Technologies Senior Java Developer Interview Experiences

3 interviews found

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
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.

Senior Java Developer Interview Questions Asked at Other Companies

asked in Amdocs
Q1. Remove the Kth Node from the End of a Linked List You are given a ... read more
asked in Amdocs
Q2. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Amdocs
Q3. Merge Two Sorted Linked Lists Problem Statement You are provided ... read more
asked in Amdocs
Q4. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Amdocs
Q5. Why is Java considered platform-independent while the Java Virtua ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2023. 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. Share a git repo and requirement. Code based on the requirement. Java Spring questions
Round 3 - Technical 

(1 Question)

  • Q1. Java microservices & multithreading questions

Interview questions from similar companies

I applied via Company Website and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

DSA Medium Level Questions. Solve within 3 Hours.

Round 2 - One-on-one 

(1 Question)

  • Q1. 1 Question on String and 1 question on Dynamic Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA Well and Have good Knowledge of Java. But it is not a good Company to join. Please don't join that company

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

In first round there were two test
1st is the personality test.
2nd is the aptitude test were they asked about 10 aptitude questions and around 40 coding based questions, some of them were mcq and rest were output based.

Round 2 - Coding Test 

Contains 4 DSA based questions, 1 question was hard, and other 3 questions were of medium level.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be well prepared of the Josh Technology Group, you should be very good in coding and should know DSA very well.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test is there in round 1

Round 2 - Coding Test 

Coding test is there

Interview Preparation Tips

Interview preparation tips for other job seekers - do data structure and also study computer networks and dbms
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was an 1 hour round with pseudocodes of c different subject questions and it was an objective test

Round 2 - Coding Test 

It was difficult with question of medium to hard level

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2024.

Round 1 - Aptitude Test 

Aptitude+CS fundamentals questions were asked

Round 2 - Coding Test 

4 questions majorly based on trees and linked list

Round 3 - Coding Test 

Again 3 ques 1 was based on trees,another in linked list and 3rd on kadanes algorithm

Round 4 - Technical 

(3 Questions)

  • Q1. Left view of tree
  • Ans. 

    Left view of a tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner

    • Keep track of the first node encountered at each level

    • Add the first node encountered at each level to the result array

  • Answered by AI
  • Q2. Riddle based question
  • Q3. Detect a loop in linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect a loop in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a loop in the linked list.

  • Answered by AI

Skills evaluated in this interview

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Senior Java Developer interview?
ZeMoSo Technologies interview process usually has 2-3 rounds. The most common rounds in the ZeMoSo Technologies interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for ZeMoSo Technologies Senior Java Developer 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 ZeMoSo Technologies. The most common topics and skills that interviewers at ZeMoSo Technologies expect are Hibernate, Advanced Java, Angularjs, Core Java and J2Ee.
What are the top questions asked in ZeMoSo Technologies Senior Java Developer interview?

Some of the top questions asked at the ZeMoSo Technologies Senior Java Developer interview -

  1. How the communication is happening between the microservice...read more
  2. create a spring boot project and implement crud operation for user tab...read more
  3. Explain SAGA design patt...read more

Tell us how to improve this page.

ZeMoSo Technologies Senior Java Developer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

kipi.ai Interview Questions
4.2
 • 57 Interviews
Affine Interview Questions
3.3
 • 49 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
View all

ZeMoSo Technologies Senior Java Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
76 salaries
unlock blur

₹9.3 L/yr - ₹30 L/yr

Associate Software Engineer
45 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Software Engineer
37 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Software Engineer2
31 salaries
unlock blur

₹10 L/yr - ₹14 L/yr

Senior Software Engineer 2
25 salaries
unlock blur

₹21.3 L/yr - ₹25 L/yr

Explore more salaries
Compare ZeMoSo Technologies with

Saama Technologies

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

Cyfuture

3.0
Compare

DISYS

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