AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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.6

based on 182 Reviews

Play video Play video Video summary
  • About
  • Reviews
    182
  • Salaries
    779
  • Interviews
    146
  • Jobs
    -
  • Benefits
    11
  • Photos
    -

Filter interviews by

ZeMoSo Technologies Interview Questions and Answers

Updated 10 Jun 2025
Popular Designations

111 Interview questions

A Senior Devops Engineer was asked 1w ago
Q. How do you integrate Terraform with Jenkins?
Ans. 

Integrating Terraform with Jenkins automates infrastructure provisioning and management in CI/CD pipelines.

  • Install Terraform on the Jenkins server or use a Docker container with Terraform.

  • Create a Jenkins pipeline job and configure it to use a Git repository containing your Terraform code.

  • Use the 'Terraform' plugin for Jenkins to manage Terraform commands easily.

  • Add stages in your Jenkinsfile for 'init', 'plan', a...

View all Senior Devops Engineer interview questions
A Software Engineer was asked 1mo ago
Q. Write a function that calls an API, retrieves data, and rejects after retrying 3 times.
Ans. 

A function to fetch data from an API with a retry mechanism that fails after three attempts.

  • Use async/await for handling asynchronous API calls.

  • Implement a loop to retry the API call up to three times.

  • Use try/catch to handle errors during the API call.

  • Return the data if successful, otherwise reject after three attempts.

  • Example: Use fetch() in JavaScript to make the API call.

View all Software Engineer interview questions
A Software Engineer was asked 1mo ago
Q. Design a multi-tenant logging system.
Ans. 

A multi-tenant logging system captures logs from multiple clients while ensuring data isolation and security.

  • Use a centralized logging service (e.g., ELK stack) to aggregate logs from different tenants.

  • Implement tenant identification in log entries (e.g., using tenant IDs or namespaces).

  • Ensure data isolation by using separate indices or databases for each tenant in the logging system.

  • Provide role-based access cont...

View all Software Engineer interview questions
A Software Engineer was asked 1mo ago
Q. What is an event loop?
Ans. 

The event loop is a programming construct that manages asynchronous operations in environments like JavaScript.

  • The event loop allows non-blocking I/O operations, enabling efficient handling of multiple tasks.

  • It works by continuously checking the call stack and the message queue.

  • When the call stack is empty, the event loop pushes the first message from the queue to the stack for execution.

  • Example: In JavaScript, se...

View all Software Engineer interview questions
A Software Engineer was asked 1mo ago
Q. What is the difference between cluster and worker threads?
Ans. 

Cluster threads manage multiple processes, while worker threads execute tasks within a single process.

  • Cluster threads are used in distributed systems to manage multiple nodes.

  • Worker threads operate within a single application, handling tasks concurrently.

  • Example of cluster threads: Node.js cluster module for scaling applications.

  • Example of worker threads: Java's ExecutorService for managing thread pools.

View all Software Engineer interview questions
A Software Engineer was asked 1mo ago
Q. Why is Node.js single-threaded?
Ans. 

Node.js is single-threaded to handle asynchronous operations efficiently, using an event-driven architecture for scalability.

  • Node.js uses a single-threaded event loop to manage multiple connections concurrently.

  • This design allows Node.js to handle I/O operations without blocking the main thread.

  • For example, while waiting for a database query, Node.js can process other requests.

  • Single-threading simplifies the progr...

View all Software Engineer interview questions
A Node JS Developer was asked 1mo ago
Q. What changes would you make to the middleware to mitigate a DDoS attack?
Ans. 

Implementing middleware changes can help mitigate DDoS attacks by controlling traffic and enhancing security measures.

  • Rate Limiting: Implement rate limiting to restrict the number of requests a user can make in a given time frame, e.g., 100 requests per minute.

  • IP Blacklisting: Maintain a list of known malicious IP addresses and block requests from them to prevent attacks from those sources.

  • Request Throttling: Intr...

View all Node JS Developer interview questions
Are these interview questions helpful?
A Node JS Developer was asked 1mo ago
Q. Explain the Singleton Design Pattern.
Ans. 

The Singleton Design Pattern ensures a class has only one instance and provides a global point of access to it.

  • Single Instance: The Singleton pattern restricts the instantiation of a class to one single instance, ensuring controlled access.

  • Global Access: It provides a global point of access to the instance, allowing it to be easily accessed from anywhere in the application.

  • Lazy Initialization: The instance is crea...

View all Node JS Developer interview questions
A Senior Software Engineer was asked 2mo ago
Q. Explain the adapter design pattern.
Ans. 

The Adapter Design Pattern allows incompatible interfaces to work together by converting one interface into another.

  • Promotes reusability by allowing existing classes to work with new interfaces.

  • Useful in integrating legacy code with new systems.

  • Example: A USB to Ethernet adapter allows a USB device to connect to an Ethernet network.

  • Can be implemented as a class adapter (using inheritance) or an object adapter (usi...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 2mo ago
Q. Write a Java implementation of a singly linked list.
Ans. 

A singly linked list is a data structure consisting of nodes, where each node points to the next node in the sequence.

  • A node contains data and a reference to the next node.

  • The list has a head pointer to the first node and a tail pointer to the last node.

  • Common operations include insertion, deletion, and traversal.

  • Example of insertion: Adding a new node at the beginning or end of the list.

  • Example of deletion: Remov...

View all Senior Software Engineer interview questions
1 2 3 4 5 6 7

ZeMoSo Technologies Interview Experiences

146 interviews found

Software Engineer2 Interview Questions & Answers

user image Vaibhav darwekar

posted on 18 Dec 2024

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

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

Round 1 - Coding Test 

It was an assessment test consisting of data structures and algorithms (DSA) and multiple-choice questions (MCQs).

Round 2 - Technical 

(1 Question)

  • Q1. 30 min Technical round. Question on Node js, React, and Javascript
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. What were the in-depth concepts of Node, React, and JavaScript that were covered in the technical round?
  • Add your answer
Round 4 - Technical 

(1 Question)

  • Q1. Final Technical Round cosist of Topics like System Design, Node js, React
  • Add your answer

Interview Preparation Tips

Topics to prepare for ZeMoSo Technologies Software Engineer2 interview:
  • Node.Js
  • Javascript
  • React.Js
  • Data Structures
  • Algorithms
  • Database
  • Microservices
Interview preparation tips for other job seekers - Prepare thoroughly, focusing more on in-depth and practical implementation rather than just definitions.

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)
Anonymous

Software Engineer Interview Questions & Answers

user image Krishna Bhashinge

posted on 11 Nov 2024

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

I appeared for an interview in Oct 2024.

Round 1 - Coding Test 

First round was coding test on Coderbyte it was good.

Round 2 - Technical 

(2 Questions)

  • Q1. This round is video technical interview on flowcareer platform
  • Add your answer
  • Q2. Coding DSA question was asked on array.
  • Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. This round contains mix questions on theory as well as DSA.
  • Add your answer
  • Q2. Machine coding question asked on react.js.
  • Add your answer
Round 4 - Technical 

(2 Questions)

  • Q1. Some basic react.js and node.js questions.
  • Add your answer
  • Q2. Questions asked on MongoDB and one DSA question on array asked.
  • Add your answer
Round 5 - HR 

(1 Question)

  • Q1. This round is HR salary discussion round and i got offer.
  • Add your answer

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

Software Engineer III Interview Questions & Answers

user image Anonymous

posted on 30 Jan 2025

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

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Node Js questions. 2 coding questions medium level (refer leetcode medium).
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Given problem statement and code was developed accroding to it tou need to optimised that code.
  • Ans. 

    Optimize the given code for better performance and efficiency.

    • Identify and eliminate redundant calculations to reduce time complexity.

    • Use efficient data structures like hash maps for faster lookups.

    • Implement algorithmic improvements, such as using binary search instead of linear search.

    • Consider parallel processing for tasks that can be executed concurrently.

  • Answered by AI
    Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Basic DSA questions. closure code etc
  • Add your answer

Software Engineer III Interview Questions asked at other Companies

Q1. Given k floors and n eggs, find the highest floor from which if an egg is dropped, it will not break.
View answer (2)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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

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

Round 1 - Aptitude Test 

The aptitude test had various sections for programming mcq questions, basic aptitude and also coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to project that I have worked on
  • Add your answer
  • Q2. Technical Questions related to my stack react and node, and some js coding questions
  • Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to project that I worked on
  • Add your answer
  • Q2. Technical questions related to my stack
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on fundamentals

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

Senior Software Engineer 1 Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain Node.js event driven architecture.
  • Ans. 

    Node.js event driven architecture is a non-blocking, asynchronous model where events trigger callbacks.

    • Node.js uses an event loop to handle asynchronous operations.

    • Callbacks are registered for specific events and executed when the event occurs.

    • Event emitters in Node.js trigger events that are handled by listeners.

    • Example: Reading a file asynchronously in Node.js using fs module.

  • Answered by AI
    Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. DSA question, JavaScript questions, node.js, database and cloud
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Code optimisation
  • Add your answer

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Describe the architecture design for an end-to-end system that takes input from a user and displays a response.
View answer (1)
Anonymous

Senior Software Engineer 2 Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2024

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 4 interview rounds.

Round 1 - Coding Test 

Coderbyte test on DSA and few Stack related MCQs.

Round 2 - Technical 

(3 Questions)

  • Q1. DSA question related to Arrays, difficulty level medium.
  • Add your answer
  • Q2. Stack related questions like mine was MERN, so question on Nodejs, Database schema design, reactjs and Javascript basics.
  • Add your answer
  • Q3. This was taken by Flocareer, Zemoso hired them to evaluate me.
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Discussed overall experience on different types of products and how I deal with those. And one coding question.
  • Add your answer
Round 4 - Technical 

(1 Question)

  • Q1. Again full interview on MERN STACK with one coding question on coderbyte.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Do some DSA before applying here.
Brushup your basics on the stack on which you are giving interview.

Senior Software Engineer 2 Interview Questions asked at other Companies

Q1. What microservices patterns are you aware ? let's assume that there is a microservice based architecture and service A is calling service B which in turn service C. If service b fails, how will you manage transaction and logging ?
View answer (1)
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2024

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

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

Round 1 - Coding Test 

Given a list of integer find the longest increase sequence

Round 2 - One-on-one 

(2 Questions)

  • Q1. Given a list of integer find the first non repeating integer using stream API of Java 8.
  • Ans. 

    Find the first non-repeating integer in a list using Java 8 stream API.

    • Use Java 8 stream API to group integers by count

    • Filter out integers with count greater than 1

    • Return the first non-repeating integer

  • Answered by AI
    Add your answer
  • Q2. Questions on core java like how internationally string works, hashmap etc And questions on database like what is indexing How to optimize SQL queries etc
  • Add your answer
Round 3 - One-on-one 

(3 Questions)

  • Q1. Given a Map of fruits with there price as a key value pair respectively, find the fruit whose price is maximum using Java 8 Stream API.
  • Ans. 

    Using Java 8 Stream API to find the fruit with maximum price in a Map of fruits.

    • Use entrySet() method to get a stream of key-value pairs from the Map.

    • Use max() method with Comparator.comparing() to find the entry with maximum price.

    • Extract the key (fruit) from the entry with maximum price.

  • Answered by AI
    Add your answer
  • Q2. Write a program to check whether the parenthesis are properly balanced or not, means for every opening brace these should be a closing brace present.
  • Ans. 

    Program to check if parenthesis are properly balanced

    • Use a stack data structure to keep track of opening parenthesis

    • Iterate through the input string and push opening parenthesis onto the stack

    • When a closing parenthesis is encountered, pop from the stack and check if it matches the corresponding opening parenthesis

    • If stack is empty at the end and all parenthesis are matched, then the input has properly balanced parenthe...

  • Answered by AI
    Add your answer
  • Q3. Questions on core Java, Spring Boot, JPA, and Microservices you should have strong foundation in these topics questions asked like 1) what is API gateway 2) how 2 services communicate with eachother 3) ...
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with practical coding examples. And you should have a very good understanding of foundational concepts. Give mock interviews and practice common coding problem.

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2025

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

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

Round 1 - Technical 

(1 Question)

  • Q1. DSA probelms and java oops concepts
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. DSA JAVA, SRINGBOOT - DESIGN PATTERNS
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. HR discussion on how the company works and hr explained the work culture. Salary discussion and benefit
  • Add your answer

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

Software Engineer III Interview Questions & Answers

user image Raviraj Ghodake

posted on 13 Nov 2024

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

Round 1 - Technical 

(2 Questions)

  • Q1. Based on nodejs and expressjs
  • Add your answer
  • Q2. Based on mongodb
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Advanced knowledge on nodejs, expressjs, mongodb and aws
  • Add your answer
  • Q2. 2 coding questions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
  • Add your answer

Interview Preparation Tips

Topics to prepare for ZeMoSo Technologies Software Engineer III interview:
  • nodejs
  • expressjs
  • MongoDB
  • AWS

Software Engineer III Interview Questions asked at other Companies

Q1. Given k floors and n eggs, find the highest floor from which if an egg is dropped, it will not break.
View answer (2)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Coding Test 

Coding test includes 2 codes and some mcq questions

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself and project
  • Ans. 

    I am a software engineer with experience in developing web applications using Java and JavaScript.

    • Experienced in Java and JavaScript programming languages

    • Developed web applications using Spring Boot and React

    • Familiar with Agile development methodologies

  • Answered by AI
    Add your answer
  • Q2. Coding questions
  • Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. Project pverview
  • Add your answer
  • Q2. Basic technical questions
  • Add your answer

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about ZeMoSo Technologies?
Ask anonymously on communities.
More about working at ZeMoSo Technologies
  • HQ - Farmers Branch, Texas, US
  • IT Services & Consulting
  • 201-500 Employees (India)

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, Javascript, Angularjs and Hibernate.
What are the top questions asked in ZeMoSo Technologies interview?

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

  1. 1. Explain about CORS? 2. Explain about REST API Versioning 3. Convert loops in...read more
  2. 1) intro 2) ecplain how web app will be deploy on cloud (explain arch) 3) expla...read more
  3. Given a Map of fruits with there price as a key value pair respectively, find t...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 Interviews By Designations

  • ZeMoSo Technologies Senior Software Engineer Interview Questions
  • ZeMoSo Technologies Software Engineer Interview Questions
  • ZeMoSo Technologies Senior Software Engineer 2 Interview Questions
  • ZeMoSo Technologies Software Engineer III Interview Questions
  • ZeMoSo Technologies Node JS Developer Interview Questions
  • ZeMoSo Technologies Senior Software Engineer 1 Interview Questions
  • ZeMoSo Technologies Principal Software Engineer Interview Questions
  • ZeMoSo Technologies Associate Software Engineer Interview Questions
  • Show more
  • ZeMoSo Technologies Software Engineer2 Interview Questions
  • ZeMoSo Technologies Software Developer Interview Questions

Interview Questions for Popular Designations

  • Senior Software Engineer Interview Questions
  • Software Engineer Interview Questions
  • Software Engineer III Interview Questions
  • Senior Software Engineer 2 Interview Questions
  • Senior Software Engineer 1 Interview Questions
  • Node JS Developer Interview Questions
  • Associate Software Engineer Interview Questions
  • Principal Software Engineer Interview Questions
  • Show more
  • Software Engineer2 Interview Questions
  • Assistant Manager Interview Questions

Overall Interview Experience Rating

4.3/5

based on 142 interview experiences

Difficulty level

Easy 2%
Moderate 95%
Hard 3%

Duration

Less than 2 weeks 70%
2-4 weeks 27%
4-6 weeks 3%
View more

Interview Questions from Similar Companies

Josh Technology Group
Josh Technology Group Interview Questions
3.0
 • 70 Interviews
Zifo RnD Solutions
Zifo RnD Solutions Interview Questions
3.8
 • 65 Interviews
kipi.ai
kipi.ai Interview Questions
4.1
 • 58 Interviews
Saama Technologies
Saama Technologies Interview Questions
3.7
 • 56 Interviews
Ksolves India Limited
Ksolves India Limited Interview Questions
3.2
 • 56 Interviews
Affine
Affine Interview Questions
3.3
 • 51 Interviews
Blenheim Chalcot
Blenheim Chalcot Interview Questions
2.7
 • 51 Interviews
Indus Valley Partners
Indus Valley Partners Interview Questions
3.1
 • 50 Interviews
Talentica Software
Talentica Software Interview Questions
4.2
 • 49 Interviews
Soft Suave Technologies
Soft Suave Technologies Interview Questions
3.3
 • 47 Interviews
View all

ZeMoSo Technologies Reviews and Ratings

based on 182 reviews

3.6/5

Rating in categories

4.1

Skill development

3.4

Work-life balance

3.5

Salary

3.2

Job security

3.5

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 182 Reviews and Ratings
ZeMoSo Technologies Salaries in India
Senior Software Engineer
89 salaries
unlock blur

₹10.1 L/yr - ₹30 L/yr

Software Engineer III
58 salaries
unlock blur

₹9.4 L/yr - ₹16.7 L/yr

Associate Software Engineer
45 salaries
unlock blur

₹6.8 L/yr - ₹7.3 L/yr

Software Engineer
44 salaries
unlock blur

₹6.9 L/yr - ₹20 L/yr

Senior Software Engineer 1
39 salaries
unlock blur

₹9.2 L/yr - ₹27 L/yr

Explore more salaries
Compare ZeMoSo Technologies with
Medcode

Medcode

4.4
Compare
Cyfuture

Cyfuture

3.0
Compare
Maxgen Technologies

Maxgen Technologies

4.6
Compare
JoulestoWatts Business Solutions

JoulestoWatts Business Solutions

3.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • ZeMoSo Technologies Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter