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

I was interviewed in Nov 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

There were around 20 mcq's on Aptitude.
1 Coding Question

  • Q1. 

    Sum of Maximum and Minimum Elements Problem Statement

    Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array.

    Follow Up:

    Can you achie...

  • Ans. 

    First I initialized two variables max and min.
    and traverse the array to find max and min.
    then return the sum of max and min.

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Design a Constant Time Data Structure

    Create a data structure that maintains mappings between keys and values, supporting the following operations in constant time:

    1. INSERT(key, value): Add or update t...
  • Ans. Array Approach - Separate Chaining

    Approach:

    HashMap is the data structure used to store key-value pairs, where the average retrieval time for get() and insert() operations is constant i.e. O(1).

     

    Hashmap uses the array of Singly Linked List internally.

     

    The array is called the buckets and at every bucket(i-th index of the array) holds a pointer to head of the Singly Linked List. 

    Every Linked List Node has f...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaBE/BTECH CandidateZeMoSo Technologies interview preparation:Topics to prepare for the interview - Arrays, String, Linked List, Stack, Queues, HashMaps, DBMS, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare OOPS Concepts
Tip 2 : Build good knowledge in Data Structure and Algorithms.
Tip 3 : Practice SQL queries.

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume
Tip 2 : Mention atleast 2 projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

I was interviewed in May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

It was virtual 1st round with aptitude and computer science related questions and the other was the programming question for which they were given 30 min to solve and available languages are C,C++,Java and Python.

  • Q1. 

    Ninja and Alternating Largest Problem Statement

    Ninja is given a sequence of numbers and needs to rearrange them so that every second element is greater than its neighbors on both sides.

    Example:

    Input:
    ...
  • Ans. 

    The task is to rearrange the given array such that every second element is greater than its left and right element.

    • Read the number of test cases

    • For each test case, read the number of elements in the array and the array elements

    • Iterate through the array and swap elements at odd indices with their adjacent elements if necessary

    • Check if the rearranged array satisfies the conditions and print 1 if it does, else print 0

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was around 1PM when this round started. It was taken by 2 developers working in the company. Initially I was a bit nervous but both ther interviewers are flexible. It went well with some discussions and questions.

  • Q1. 

    Longest Common Prefix After Rotation

    You are given two strings 'A' and 'B'. While string 'A' is constant, you may apply any number of left shift operations to string 'B'.

    Explanation:

    Your task is to calcu...

  • Ans. 

    The question asks to find the minimum number of left shift operations required to obtain the longest common prefix of two given strings.

    • Perform left shift operations on string B to find the longest common prefix with string A

    • Count the number of left shift operations required to obtain the longest common prefix

    • Return the minimum number of left shift operations for each test case

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This was the final and technical round. It happened in between 7-7.30 pm. This interview was taken by senior member in the company.

  • Q1. 

    Sub Sort Problem Statement

    You are given an integer array ARR. Determine the length of the shortest contiguous subarray which, when sorted in ascending order, results in the entire array being sorted in a...

  • Ans. 

    The question asks to find the length of the shortest contiguous subarray that needs to be sorted in order to sort the whole array.

    • Iterate through the array and find the first element that is out of order from the left side.

    • Iterate through the array and find the first element that is out of order from the right side.

    • Find the minimum and maximum element within the subarray from the above steps.

    • Expand the subarray from bo...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Associate Software Engineer in HyderabadEligibility criteriaAbove 9 CGPAZeMoSo Technologies interview preparation:Topics to prepare for the interview - Algorithms and Data Structures, DBMS, OS, Puzzles, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practise programming questions on daily basis.
Tip 2 : Do not jump into code directly. Brainstorm ideas and arrive at a soltuion.
Tip 3 : Learn OOPS along with real world scenarios and also dbms, os and cn.

Application resume tips for other job seekers

Tip 1 : Keep it on a Page and Think like a employer when preparing resume.
Tip 2 : Your resume isn’t a list of everything you’ve ever done. Carefully curate the experiences that best capture your skills and problem-solving abilities. 
Tip 3 : Include projects and highlight your achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

Top ZeMoSo Technologies Associate Software Engineer Interview Questions and Answers

Q1. Ninja And Alternating LargestNinja is given a few numbers, and he is being asked to rearrange the numbers so that every second element is greater than its left and right element. Suppose the given array is [1, 2, 3, 4, 5] then the rearrange... read more
View answer (3)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Array tasks on given platform

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical questions on core java
Round 3 - One-on-one 

(1 Question)

  • Q1. About frontend technology questions

Interview Preparation Tips

Interview preparation tips for other job seekers - study every topic in detail. oops, collection, exception handling

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

Interview Questionnaire 

2 Questions

  • Q1. Why choose software testing
  • Ans. 

    Software testing ensures quality and reliability of software products.

    • Identifies defects and errors in software

    • Ensures software meets requirements and specifications

    • Improves user experience and satisfaction

    • Saves time and money by catching issues early

    • Increases confidence in software reliability

  • Answered by AI
  • Q2. What's the reason

Interview Preparation Tips

Interview preparation tips for other job seekers - How to improve mnbnnjvvvcgggh vvvvvghhhvcghhhhb bhvghhvvbhhv vhbcghh bhbhhbbcc

Skills evaluated in this interview

Software Testing Engineer Interview Questions asked at other Companies

Q1. Maximal AND SubsequencesYou are given an array consisting of N integers. You need to find the number of k-element subsequences of the given array where the bitwise AND of the subsequence's elements is maximal. Also, find the maximal AND val... read more
View answer (4)

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)

I was interviewed in Jan 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Implent Oops concept of Java through code
  • Ans. 

    Java OOPs concepts can be implemented using classes, objects, inheritance, polymorphism, and encapsulation.

    • Create classes with attributes and methods

    • Instantiate objects from classes

    • Use inheritance to create subclasses

    • Implement polymorphism through method overriding

    • Encapsulate data using access modifiers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join Zemoso Technologies because there is no job security.
Also, the employees are treated properly.

Skills evaluated in this interview

Top ZeMoSo Technologies Associate Software Engineer Interview Questions and Answers

Q1. Ninja and Alternating Largest Problem Statement Ninja is given a sequence of numbers and needs to rearrange them so that every second element is greater than its neighbors on both sides. Example: Input: [1, 2, 3, 4, 5] Output: [1, 3, 2, 5, ... read more
View answer (1)

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

Get interview-ready with Top ZeMoSo Technologies Interview Questions

Intern Interview Questions & Answers

user image Anonymous

posted on 7 May 2021

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

Interview Questionnaire 

4 Questions

  • Q1. What is OO?
  • Ans. 

    OO stands for Object-Oriented. It is a programming paradigm that focuses on objects and their interactions.

    • OO is based on the concept of classes and objects.

    • It emphasizes encapsulation, inheritance, and polymorphism.

    • OO languages include Java, C++, Python, and Ruby.

    • OO design patterns are used to solve common problems in software development.

  • Answered by AI
  • Q2. Explain Bug/defect life cycle.
  • Ans. 

    Bug/defect life cycle is a process of identifying, reporting, prioritizing, fixing, and verifying software defects.

    • Defect identification

    • Defect reporting

    • Defect prioritization

    • Defect fixing

    • Defect verification

  • Answered by AI
  • Q3. Explan your previous project/work
  • Q4. What is the difference between smoke & sanity testing?
  • Ans. 

    Smoke testing is a quick and shallow test to check basic functionality, while sanity testing is a more thorough test to ensure system stability.

    • Smoke testing is done to check if the critical functionalities of the system are working or not.

    • Sanity testing is done to check if the system is stable enough to proceed with further testing.

    • Smoke testing is usually done after a build is deployed, while sanity testing is done a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the basics of testing & Java concepts.

Skills evaluated in this interview

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Jobs at ZeMoSo Technologies

View all

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals

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

I was interviewed before Mar 2021.

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 - Coding Test 
Round 3 - Technical 

(1 Question)

  • Q1. DS Algo and System Design

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the basic of DS Algo, and distributed system topics

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)

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