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 Software Engineer2 Interview Questions and Answers

Updated 18 Dec 2024

7 Interview questions

A Software Engineer2 was asked 8mo ago
Q. How would you implement a game using ReactJS?
Ans. 

Implementing a game using ReactJS involves creating components for game elements, managing state, handling user interactions, and updating the UI.

  • Create separate components for game elements such as game board, player pieces, and score display.

  • Use React state to manage game state, such as player turns, scores, and game progress.

  • Handle user interactions, such as clicking on game pieces or buttons, to update game st...

A Software Engineer2 was asked 9mo ago
Q. Given an integer array and a target value k, find a pair of elements in the array whose sum equals 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.

Software Engineer2 Interview Questions Asked at Other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a po ... read more
asked in Wayfair
Q2. Describe how you would design an Order and Cart Page in iOS, incl ... read more
asked in JioStar
Q3. Given an array of officers, where ranks 1-8 represent high-rankin ... read more
Q4. How to process large amount of data? Which tool would you prefer?
asked in PayPal
Q5. Can you describe the system design for the checkout feature on Am ... read more
A Software Engineer2 was asked 9mo ago
Q. What is an 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.

A Software Engineer2 was asked 9mo ago
Q. Given an input string "aaabbCCaaDD", output "a3b2C2a2D2". 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 st...

A Software Engineer2 was asked 8mo ago
Q. System design of Paytm and Microservices Architecture.
Ans. 

Paytm uses microservices architecture for scalability and flexibility in system design.

  • Paytm's system design is based on microservices architecture to break down the application into smaller, independent services.

  • Each service in Paytm's architecture handles a specific function, such as payments, wallet, or shopping.

  • Microservices communicate with each other through APIs, allowing for easier scalability and maintena...

A Software Engineer2 was asked 9mo ago
Q. 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 ...

A Software Engineer2 was asked 9mo ago
Q. 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 bra...

Are these interview questions helpful?

ZeMoSo Technologies Software Engineer2 Interview Experiences

4 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
Round 3 - Technical 

(1 Question)

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

(1 Question)

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

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

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

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

Round 1 - Coding Test 

Coding test includes 2 coding questions and multiple choise questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Linked List medium level question
  • Q2. Graphs medium to hard level question
  • Q3. Design patterns
Round 3 - Technical 

(2 Questions)

  • Q1. Implementation of game usign ReactJS.
  • Ans. 

    Implementing a game using ReactJS involves creating components for game elements, managing state, handling user interactions, and updating the UI.

    • Create separate components for game elements such as game board, player pieces, and score display.

    • Use React state to manage game state, such as player turns, scores, and game progress.

    • Handle user interactions, such as clicking on game pieces or buttons, to update game state.

    • U...

  • Answered by AI
  • Q2. System design of Paytm and Microservices Architecture.
  • Ans. 

    Paytm uses microservices architecture for scalability and flexibility in system design.

    • Paytm's system design is based on microservices architecture to break down the application into smaller, independent services.

    • Each service in Paytm's architecture handles a specific function, such as payments, wallet, or shopping.

    • Microservices communicate with each other through APIs, allowing for easier scalability and maintenance.

    • T...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary Structure discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Having good knowledge on DSA, design patterns and specific Tech stack knowledge will help to get into Zomoso Technologies.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to js es6
  • Q2. Questions related to string rotation

Interview Preparation Tips

Topics to prepare for ZeMoSo Technologies Software Engineer2 interview:
  • Node.Js
Interview preparation tips for other job seekers - The interview process went smooth. The entire process was well organised and efficient and I was particularly impressed by the professionalism of HR representative, Ritu Aggarwal.
Overal, I was very impressed with Zemoso Technologies interview process. It is evident that you value the candidate experience, and it reflects positively on the company culture.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about ZeMoSo Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview in Aug 2024.

Round 1 - Javascript assessment 

(1 Question)

  • Q1. Core javascript concepts questions
Round 2 - Coding Test 

After 1st round of core javascript assessment gets cleared they scheudle a 2nd round for technical interview.
They ask starting from basics to advance concepts.
Whatever you have experience in you should know its concept.
In the same interview there will be 4 coding questions out of which 3 you have solve.
1. Two questions on DSA problem solving
2. Two questions on domain wise for me it was on React

I had solve 2 DSA questions and 1 react question.
Interviewer may ask to change input and see if your logic work for it or not
If it does not work you should be capable enough to make it work for given input.

Round 3 - Behavioral 

(1 Question)

  • Q1. Situational based questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Design Book my show.
  • Q2. Basic DSA questions.
  • Q3. Microservices and monolithic

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
Are these interview questions helpful?

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 Questionnaire 

1 Question

  • Q1. SOLID principles examples in depth,given to design user management database in sql(just flow diagram,and in which table which value is used),some basic c# questions related to how you log in c#

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Software Engineer2 interview?
ZeMoSo Technologies interview process usually has 3 rounds. The most common rounds in the ZeMoSo Technologies interview process are Technical, Coding Test and HR.
What are the top questions asked in ZeMoSo Technologies Software Engineer2 interview?

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

  1. Given an integer array , and a target k , we need to find the pair of elements ...read more
  2. Given an input string "aaabbCCaaDD" , O/p : a3b2C2a2D2 , we need to find the fr...read more
  3. Actuator in spring boot and what are the actuator endpoi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.8/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

QualiZeal Interview Questions
4.3
 • 59 Interviews
kipi.ai Interview Questions
4.1
 • 58 Interviews
Affine Interview Questions
3.3
 • 51 Interviews
View all
ZeMoSo Technologies Software Engineer2 Salary
based on 35 salaries
₹10 L/yr - ₹14 L/yr
39% less than the average Software Engineer2 Salary in India
View more details

ZeMoSo Technologies Software Engineer2 Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.4

Skill development

4.0

Work-life balance

3.0

Salary

3.6

Job security

3.6

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
91 salaries
unlock blur

₹15 L/yr - ₹26 L/yr

Software Engineer III
59 salaries
unlock blur

₹9.9 L/yr - ₹16.7 L/yr

Associate Software Engineer
46 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

4.4
Compare

Cyfuture

3.0
Compare

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare
write
Share an Interview