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
3.7

based on 166 Reviews

Filter interviews by

ZeMoSo Technologies Senior Software Engineer Interview Questions, Process, and Tips

Updated 11 Nov 2024

Top ZeMoSo Technologies Senior Software Engineer Interview Questions and Answers

View all 14 questions

ZeMoSo Technologies Senior Software Engineer Interview Experiences

21 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2024. There were 5 interview rounds.

Round 1 - Coding Test 

2 Coding questions and 15 MCQs

Difficulty - Intermediate

Round 2 - Technical 

(1 Question)

  • Q1. Basic NodeJS related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. System Design questions and coding questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Nodejs fundamental questions and system design
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and growth expectations
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic mcqs related to the language, two coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. General overview of your experience, some coding and technical questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Advanced technical and coding rounds, was asked to write code for questions asked

Interview Preparation Tips

Topics to prepare for ZeMoSo Technologies Senior Software Engineer interview:
  • Node.Js
  • React.Js
  • Javascript
Interview preparation tips for other job seekers - Just be confident

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
asked in Capgemini
Q2. Pascal's TriangleYou are given an integer N. Your task is to retu ... read more
Q3. K Largest Elements You are given with an integer k and an array o ... read more
asked in GlobalLogic
Q4. System Design QuestionCreate a simple shopping application. They ... read more
asked in Info Edge
Q5. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

The test was on the Coderbyte platform which consisted of a few general aptitude questions, one coding question on backend development and one coding question on problem-solving

Round 2 - Technical 

(1 Question)

  • Q1. Java8 questions like streams, lambda etc. Spring Boot questions Microservices principles
Round 3 - Technical 

(1 Question)

  • Q1. Problem-solving questions using array and stack Questions on java and spring boot

Interview Preparation Tips

Topics to prepare for ZeMoSo Technologies Senior Software Engineer interview:
  • Java
  • Spring Boot
  • DSA
  • java8
Interview preparation tips for other job seekers - If you are good at problem-solving and good in Java along with java8 features and Spring Boot or prepared to crack the interview easily.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - Coding Test 

There were 2 to 3 easy to mid level Coding question. Time duration is one hour

Round 2 - Technical 

(1 Question)

  • Q1. One coding question and detailed discussion on Java, Spring Boot and microServices
Round 3 - Technical 

(1 Question)

  • Q1. One Coding Question and detailed discussion on Java 8 and above
Round 4 - Behavioral 

(1 Question)

  • Q1. One coding question and was asked to write the logic. Basically this round was to assess the problem solving skills
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice lots of Arrays and String questions

ZeMoSo Technologies interview questions for designations

 Senior Software Engineer 2

 (11)

 Software Engineer

 (15)

 Senior Software Developer

 (2)

 Software Engineer III

 (6)

 Principal Software Engineer

 (5)

 Associate Software Engineer

 (5)

 Assistant Software Engineer

 (1)

 Software Testing Engineer

 (1)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a online test having coding questions and aptitude questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Database related questions
Round 3 - Technical 

(1 Question)

  • Q1. Javascript and coding questions

Get interview-ready with Top ZeMoSo Technologies Interview Questions

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Core java, spring boot, java 8 features, java programs
Round 2 - Technical 

(1 Question)

  • Q1. Spring boot security, multithreading, analytical skills
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 questions - one was a basic DP question

Round 2 - One-on-one 

(4 Questions)

  • Q1. Streams Question
  • Q2. Questions related to Java
  • Q3. Height of the binary tree
  • Ans. 

    Height of a binary tree is the maximum number of edges on the longest path from the root node to a leaf node.

    • The height of an empty tree is -1.

    • The height of a tree with only one node is 0.

    • The height of a binary tree can be calculated recursively by finding the height of the left and right subtrees and adding 1 to the maximum of the two heights.

  • Answered by AI
  • Q4. Minimum spanning tree
Round 3 - One-on-one 

(2 Questions)

  • Q1. Sort 0 and 1
  • Ans. 

    Sort an array of 0s and 1s in linear time complexity.

    • Use two pointers approach - one from the start and one from the end of the array.

    • Swap 0s to the left side and 1s to the right side until the pointers meet.

    • Time complexity: O(n), Space complexity: O(1)

  • Answered by AI
  • Q2. Implement LRU cache
  • Ans. 

    LRU cache is a data structure that stores the most recently used items, discarding the least recently used items when full.

    • Use a combination of a doubly linked list and a hashmap to efficiently implement LRU cache.

    • Keep track of the most recently used item at the head of the linked list and the least recently used item at the tail.

    • When a new item is accessed, move it to the head of the linked list and update the hashmap...

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Dec 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to Java, Spring, DSA
  • Q2. Find the number of consecutive alphabets in a string.
  • Ans. 

    The question asks to find the number of consecutive alphabets in a string.

    • Iterate through the string and check if each character is consecutive to the previous one.

    • Keep track of the count of consecutive alphabets encountered.

    • Return the count at the end.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to Java, Spring, SonarCube, Unit test, SQL index, API Gateway
Round 3 - HR 

(1 Question)

  • Q1. Mostly CTC discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Its an easy level of interview experience.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Jan 2024.

Round 1 - Coding Test 

2 programming questions on Java 8 and 2 logical reasoning questions.

Round 2 - Technical 

(1 Question)

  • Q1. Find longest palindromic substring in a string, basic java and springboot questions.
Round 3 - Technical 

(1 Question)

  • Q1. Print all the pairs of anagram present in a list of string, questions on java and Springboot, details of the project you have worked upon.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company 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 - Technical 

(2 Questions)

  • Q1. Write code based on situation with proper implementation using Design patterns etc.
  • Ans. 

    Implement a code scenario using design patterns

    • Identify the problem statement and requirements

    • Choose appropriate design patterns like Singleton, Factory, Observer, etc.

    • Implement the code following the selected design patterns

    • Test the code for functionality and efficiency

  • Answered by AI
  • Q2. Coding question in which you need to write optimize program.
Round 3 - Technical 

(2 Questions)

  • Q1. Linked list Coding questions
  • Q2. Design a database scheme of one of the known website.
  • Ans. 

    Design a database scheme for Amazon website

    • Create tables for users, products, orders, reviews, and payments

    • Use primary and foreign keys to establish relationships between tables

    • Include attributes such as user_id, product_id, order_id, review_id, and payment_id

    • Implement indexes for faster data retrieval

    • Consider denormalization for performance optimization

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Coding questions and some design questions. I got the offer within few days.

Skills evaluated in this interview

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Senior Software Engineer interview?
ZeMoSo Technologies interview process usually has 3-4 rounds. The most common rounds in the ZeMoSo Technologies interview process are Technical, Coding Test and One-on-one Round.
How to prepare for ZeMoSo Technologies Senior Software Engineer 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 Javascript, Agile, Big Data, Coding and JQuery.
What are the top questions asked in ZeMoSo Technologies Senior Software Engineer interview?

Some of the top questions asked at the ZeMoSo Technologies Senior Software Engineer interview -

  1. New technologies learnt in last 6 mont...read more
  2. Write code based on situation with proper implementation using Design patterns ...read more
  3. Default and static methods in interfa...read more
How long is the ZeMoSo Technologies Senior Software Engineer interview process?

The duration of ZeMoSo Technologies Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

ZeMoSo Technologies Senior Software Engineer Interview Process

based on 11 interviews in last 1 year

3 Interview rounds

  • Coding Test Round
  • Technical Round 1
  • Technical Round 2
View more

People are getting interviews through

based on 14 ZeMoSo Technologies interviews
Job Portal
79%
21% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
ZeMoSo Technologies Senior Software Engineer Salary
based on 71 salaries
₹12.7 L/yr - ₹30 L/yr
37% more than the average Senior Software Engineer Salary in India
View more details

ZeMoSo Technologies Senior Software Engineer Reviews and Ratings

based on 18 reviews

3.7/5

Rating in categories

4.2

Skill development

3.6

Work-Life balance

4.1

Salary & Benefits

3.6

Job Security

3.7

Company culture

3.5

Promotions/Appraisal

3.8

Work Satisfaction

Explore 18 Reviews and Ratings
Senior Software Engineer
71 salaries
unlock blur

₹12.7 L/yr - ₹30 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Software Engineer
33 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Software Engineer2
28 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

Persistent Systems

3.5
Compare

LTIMindtree

3.9
Compare

Mphasis

3.4
Compare

TCS

3.7
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