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 Interview Questions, Process, and Tips

Updated 30 Jan 2025

Top ZeMoSo Technologies Interview Questions and Answers

View all 83 questions

ZeMoSo Technologies Interview Experiences

Popular Designations

128 interviews found

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

I applied via Approached by Company and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

2 Coding questions and Java & Spring Boot MCQs
Coding questions were on Arrays, File System in Java.

Round 2 - Technical 

(1 Question)

  • Q1. Convert a String into sub-strings based on the number of given rows in a zig-zag pattern and display as a single string P A H N I/P: "paypalishiring...
  • Ans. 

    Convert a given string into sub-strings based on the number of rows in a zig-zag pattern and display as a single string.

    • Create an array of strings with the number of rows specified

    • Iterate through the input string and distribute characters in a zig-zag pattern

    • Concatenate the sub-strings row by row to form the final output string

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Count the continuous unique character from given string "aaaaBbbbCDEaAb", O/P: a4 B4 C1 D1 E1 a2 b2
  • Ans. 

    Count the continuous unique characters in a given string.

    • Iterate through the string and keep track of the current character and its count

    • If the current character is different from the previous one, print the count and reset it

    • Handle both uppercase and lowercase characters separately

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview focusses on problem solving questions on arrays, string conversions, etc and scenario based questions.

Top ZeMoSo Technologies Senior Software Engineer 1 Interview Questions and Answers

Q1. Convert a String into sub-strings based on the number of given rows in a zig-zag pattern and display as a single string P A H N I/P: "paypalishiring" ----> A P L S I. I G Y . I R O/P: "PAHNAPLSIIGYIR"
View answer (1)

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Architecture Design for an e2e system that takes input from user to the response shown to the user
View answer (1)

Software Engineer2 Interview Questions & Answers

user image shashank jadhav

posted on 5 Sep 2024

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

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

Round 1 - Coding Test 

Coding test will be conducted on CoderByte platform , where we will be given two question one is a backend challenge and other question on DSA , dynamic programming.

Round 2 - Technical 

(4 Questions)

  • Q1. Given an integer array , and a target k , we need to find the pair of elements from array whose sum will be equal to target k.
  • Ans. 

    Find pair of elements in array whose sum is equal to target k.

    • Use a hashmap to store the difference between target k and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the pair that sums up to target k.

  • Answered by AI
  • Q2. Asked about OAuth and JWT
  • Q3. Actuator in spring boot and what are the actuator endpoints
  • Ans. 

    Actuator in Spring Boot provides production-ready features like monitoring and metrics.

    • Actuator is a set of tools provided by Spring Boot to monitor and manage your application.

    • Actuator endpoints are URLs that provide information about your application, such as health, metrics, info, etc.

    • Examples of actuator endpoints include /actuator/health, /actuator/metrics, /actuator/info, etc.

  • Answered by AI
  • Q4. Design pattern of microservices architecture
  • Ans. 

    Microservices architecture is a design pattern where an application is composed of small, independent services that communicate over well-defined APIs.

    • Each microservice is responsible for a specific business function or capability

    • Services are loosely coupled and can be developed, deployed, and scaled independently

    • Communication between services is typically done through lightweight protocols like HTTP or messaging queue...

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Given an input string "aaabbCCaaDD" , O/p : a3b2C2a2D2 , we need to find the frequency of subsequent characters.
  • Ans. 

    The task is to find the frequency of subsequent characters in a given input string.

    • Iterate through the input string while keeping track of the current character and its frequency.

    • If the current character is the same as the previous character, increment the frequency count.

    • If the current character is different, append the previous character and its frequency to the output string.

    • Repeat until the end of the input string

  • Answered by AI
  • Q2. Branching strategies in Agile methodologies
  • Ans. 

    Branching strategies in Agile methodologies involve creating separate branches for different features or tasks to enable parallel development.

    • Feature branching: Each feature or user story is developed in a separate branch, allowing for isolation and independent testing.

    • Release branching: A branch is created for each release, enabling bug fixes and maintenance to be done separately from ongoing development.

    • Task branchin...

  • Answered by AI
  • Q3. Questions on NoSQL and MySQL
  • Q4. Questions on Springboot and Microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - Hands on coding knowledge on java , spring boot , microservices design pattern

Skills evaluated in this interview

Top ZeMoSo Technologies Software Engineer2 Interview Questions and Answers

Q1. Given an integer array , and a target k , we need to find the pair of elements from array whose sum will be equal to target k.
View answer (1)

Software Engineer2 Interview Questions asked at other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a point is inside or outside its volume? - Given a bunch of points with their coordinates, how to merge closeby points together? - How to determine if the normals of the two trian... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Platform used for coding test is good and you need to prepare DSA properly to crack

Round 2 - Coding Test 

DSA coding and question related to technology

Round 3 - Coding Test 

DSA coding and question related to technology

Round 4 - Technical 

(3 Questions)

  • Q1. React working and hooks
  • Q2. System Design of hotel mgmt
  • Ans. 

    System design for hotel management including booking, check-in/out, room allocation, and payment processing.

    • Use a database to store information about rooms, bookings, guests, and payments.

    • Implement a booking system that allows guests to search for available rooms based on dates and preferences.

    • Include a check-in/out process that updates room availability and guest information.

    • Design a room allocation algorithm to optim...

  • Answered by AI
  • Q3. Ode working and its functionalities
  • Ans. 

    Code working and its functionalities

    • Code working refers to the process of writing, compiling, and executing code to achieve a desired outcome

    • Functionalities of code include data manipulation, logic implementation, and interaction with external systems

    • Examples of code working functionalities include sorting algorithms, database queries, and user interface design

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer 3 Interview Questions asked at other Companies

Q1. What are triggers , where can they be used ? What is a mutating trigger problem , how can it be solved?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Oct 2024.

Round 1 - Coding Test 

It had 2 DSA problems along with MCQs on Java, Maths etc...

Round 2 - Technical 

(1 Question)

  • Q1. DSA, Core Java, Spring boot
Round 3 - Technical 

(1 Question)

  • Q1. Again DSA, SQL queries, Core java and Spring boot questions
Round 4 - Technical 

(1 Question)

  • Q1. DSA, Multi-threading questions, SQL queries
Round 5 - HR 

(1 Question)

  • Q1. Basic HR questions and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on technical topics very well. Also, don't ignore DSA since it is part of every round.

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)

ZeMoSo Technologies interview questions for popular designations

 Senior Software Engineer

 (23)

 Software Engineer

 (16)

 Senior Software Engineer 2

 (11)

 Node JS Developer

 (8)

 Senior Software Engineer 1

 (8)

 Software Engineer III

 (7)

 Associate Software Engineer

 (5)

 Principal Software Engineer

 (5)

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

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

Round 1 - Coding Test 

Two coding questions and 8 MCQ's related to databases and springboot technologies.

Round 2 - Technical 

(1 Question)

  • Q1. Given arrays related problem to solve and some technical questions based on java springboot and mySql
Round 3 - Technical 

(2 Questions)

  • Q1. Discussed about the topics of threads and some other technical questions
  • Q2. Asked to solve the question related to Linked List.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the concepts in depth to understand perfectly. Setting the good standards on basics leads to solve most of the problems.

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 ZeMoSo Technologies Interview Questions

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

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

Round 1 - Coding Test 

It was Coding Test of around 90 mins , Technical MCQ and 2 Coding Question was asked

Round 2 - Technical 

(2 Questions)

  • Q1. Multiple MCQ on NodeJS Internals
  • Ans. 

    Multiple choice questions on NodeJS internals

    • Node.js is an open-source, cross-platform JavaScript runtime environment that executes JavaScript code outside of a web browser.

    • It uses the V8 JavaScript engine from Google, which compiles JavaScript directly into machine code.

    • Node.js has a non-blocking, event-driven architecture that makes it lightweight and efficient for handling I/O operations.

    • Common Node.js internals top...

  • Answered by AI
  • Q2. Project Based Questions
Round 3 - Technical 

(2 Questions)

  • Q1. 2 DSA Questions
  • Q2. Question on LLD/HLD for Online food delivery Platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparing Problem Solving DSA Question and Learn languauge internals

Skills evaluated in this interview

Top ZeMoSo Technologies Senior Software Engineer 1 Interview Questions and Answers

Q1. Convert a String into sub-strings based on the number of given rows in a zig-zag pattern and display as a single string P A H N I/P: "paypalishiring" ----> A P L S I. I G Y . I R O/P: "PAHNAPLSIIGYIR"
View answer (1)

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Architecture Design for an e2e system that takes input from user to the response shown to the user
View answer (1)

Jobs at ZeMoSo Technologies

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is java virtual machine?
  • Q2. What os inheritance in java?

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Question on Spring boot backend coding problem
  • Q2. DSA medium level coding question
  • Q3. Questions on Maths and Logical Reasoning
  • Q4. Normal questions on development role
Round 2 - Technical 

(6 Questions)

  • Q1. Java 8 features (Lambda, Streams, DateTime, Optional class etc.)
  • Q2. Core java (Multithreading, Collections working, Exception Handling etc.)
  • Q3. Designing an API for a Product table, basically CRUD operations
  • Ans. 

    Designing a RESTful API for CRUD operations on a Product table

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Create endpoints like /products for listing all products, /products/{id} for specific product, etc.

    • Use JSON format for request and response bodies

    • Implement authentication and authorization mechanisms for secure access

  • Answered by AI
  • Q4. Spring boot all annotations and why they are used (underlying concepts)
  • Q5. Discussion on Response Status Code and how we can customise as per business requirements
  • Q6. A Math coding problem
Round 3 - Coding Test 

There were 3, 4 questions asked in coding round. First, second one was easy followed by medium and Hard. Mostly questions were from Arrays, String, Dynamic Programming

Round 4 - HR 

(2 Questions)

  • Q1. Roles and Aspirations
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your fundamentals strong, from core java to your current tech stack. Have some hands on each of these if not.

For coding, you need practice to come up with efficient solution from brute force and let the interviewer know why you chose the approach. If you're able to express and convince properly then you're in.

All the best!!

Senior Software Engineer 2 Interview Questions asked at other Companies

Q1. Draw a system diagram for ecommers system to place an order and get order history for a particular customer
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude and 2 coding problems- easy to medium

Round 2 - Technical 

(1 Question)

  • Q1. Duplicate number code

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java question with coding
Round 2 - Technical 

(1 Question)

  • Q1. Spring boot micro services question with coding
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

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 (172)

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies interview?
ZeMoSo Technologies interview process usually has 2-3 rounds. The most common rounds in the ZeMoSo Technologies interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for ZeMoSo Technologies 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 Java, Python, Angularjs, Javascript and Hibernate.
What are the top questions asked in ZeMoSo Technologies interview?

Some of the top questions asked at the ZeMoSo Technologies interview -

  1. Given a Map of fruits with there price as a key value pair respectively, find t...read more
  2. Internal working of Node.js and how node processes asynchronous reque...read more
  3. Given an integer array , and a target k , we need to find the pair of elements ...read more
How long is the ZeMoSo Technologies interview process?

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

Tell us how to improve this page.

ZeMoSo Technologies Interview Process

based on 122 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
View all

ZeMoSo Technologies Reviews and Ratings

based on 172 reviews

3.7/5

Rating in categories

4.2

Skill development

3.5

Work-life balance

3.6

Salary

3.3

Job security

3.6

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 172 Reviews and Ratings
Qa Engineer

Pune,

Chennai

+1

4-9 Yrs

₹ 12-15 LPA

C++/MFC

Pune,

Mumbai

4-9 Yrs

₹ 12-15 LPA

Sse Programmer Analyst

Chennai

4-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
74 salaries
unlock blur

₹12.7 L/yr - ₹33 L/yr

Associate Software Engineer
45 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Software Engineer
35 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

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