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

Clear (1)

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

Updated 21 Jan 2025

Top ZeMoSo Technologies Senior Software Engineer Interview Questions and Answers

View all 15 questions

ZeMoSo Technologies Senior Software Engineer Interview Experiences

23 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

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... 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

 (16)

 Senior Software Developer

 (2)

 Software Engineer III

 (7)

 Associate Software Engineer

 (5)

 Principal Software Engineer

 (5)

 Software Engineer II

 (1)

 Assistant Software Engineer

 (1)

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

(2 Questions)

  • Q1. NodeJs architecture
  • Q2. Middleware in nodejs
  • Ans. 

    Middleware in Node.js is a function that has access to the request and response objects, and can modify or terminate the request-response cycle.

    • Middleware functions are executed sequentially in the order they are defined.

    • They can be used for tasks such as logging, authentication, error handling, etc.

    • Example: Express.js uses middleware to handle requests before they reach the route handler.

  • Answered by AI

Get interview-ready with Top ZeMoSo Technologies Interview Questions

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
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.
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

INTERVIEWS

Cavisson Systems

No Interviews

INTERVIEWS

Cavisson Systems

No Interviews

INTERVIEWS

Wissen Technology

No Interviews

INTERVIEWS

Cavisson Systems

No Interviews

INTERVIEWS

Jash Engineering

No Interviews

INTERVIEWS

Jash Engineering

No Interviews

INTERVIEWS

ZeMoSo Technologies

No Interviews

INTERVIEWS

Wissen Technology

No Interviews

INTERVIEWS

Wissen Technology

No Interviews

DESIGNATION

Tell us how to improve this page.

ZeMoSo Technologies Senior Software Engineer Interview Process

based on 24 interviews

5 Interview rounds

  • Resume Shortlist Round
  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
  • HR Round
View more
ZeMoSo Technologies Senior Software Engineer Salary
based on 72 salaries
₹9.3 L/yr - ₹33 L/yr
33% more than the average Senior Software Engineer Salary in India
View more details

ZeMoSo Technologies Senior Software Engineer Reviews and Ratings

based on 20 reviews

3.7/5

Rating in categories

4.0

Skill development

3.6

Work-life balance

4.0

Salary

3.4

Job security

3.6

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 20 Reviews and Ratings
Senior Software Engineer
72 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer 2
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ZeMoSo Technologies with

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

Mphasis

3.4
Compare

TCS

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