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

Updated 18 Sep 2024

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 neighbo ...read more
  • Q2. 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' ...read more
  • Q3. 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 i ...read more
View all 8 questions

ZeMoSo Technologies Associate Software Engineer Interview Experiences

5 interviews found

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
  • 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
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
  • 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
  • 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) ...

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

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Easy question on arrays
  • Q2. Easy question on arrays and trees

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy level dsa..is enough

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more

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

Round 1 - Aptitude Test 

Simple aptitude questions, quantitative and qualitative questions

Round 2 - Coding Test 

1 medium coding question. Preferably write in Java. Add commands to explain your code along with time and space complexity

Round 3 - One-on-one 

(2 Questions)

  • Q1. Interview round where ask about general DSA questions, SQL along with practical questions.
  • Q2. A variant of bubble sort
  • Ans. 

    Cocktail sort is a variant of bubble sort that sorts in both directions.

    • Also known as bidirectional bubble sort or shaker sort.

    • It starts with the first element and compares it with the next one, swapping if necessary.

    • Then it moves to the last element and compares it with the previous one, swapping if necessary.

    • It continues until no more swaps are needed.

    • It is more efficient than bubble sort for large lists with many ou

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to have knowledge about DSA.
Writing in Java is more preferable.

Skills evaluated in this interview

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

ZeMoSo Technologies interview questions for designations

 Software Engineer

 (16)

 Senior Software Engineer

 (23)

 Software Engineer III

 (7)

 Principal Software Engineer

 (5)

 Software Engineer II

 (1)

 Software Testing Engineer

 (1)

 Assistant Software Engineer

 (1)

 Senior Software Engineer 2

 (11)

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

Get interview-ready with Top ZeMoSo Technologies Interview Questions

Interview questions from similar companies

I applied via Company Website and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

TNQT: TCS National Qualifier Test

Round 2 - Technical 

(1 Question)

  • Q1. All technical questions related to your project and basic understanding of any programming language. Basically questions from your resume will be asked.
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best, TCS is not tough to get into. But getting good project is a main cookie to be cracked.

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q2. Tell me about your project
  • Ans. 

    Developed a web-based inventory management system for a retail company

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

  • Answered by AI
  • Q3. Difference between primary key and unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness of a column.

    • Primary key cannot have null values, while unique key can have one null value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is automatically indexed, while unique key may or may not be indexed.

    • Example: Primary key - employee ID, Unique key - email address

  • Answered by AI
  • Q4. A basic C program to find the frequency of an alphabet in a string
  • Ans. 

    This program calculates the frequency of a given alphabet in a string using a basic C program.

    • Declare an array of size 26 to store the frequency of each alphabet

    • Iterate through the string character by character

    • For each character, check if it is an alphabet

    • If yes, increment the corresponding frequency count in the array

    • Print the frequency of the desired alphabet

  • Answered by AI
  • Q5. 2 trick questions
  • Q6. How you started your day?
  • Ans. 

    I start my day by waking up early, exercising, having a healthy breakfast, and planning my tasks for the day.

    • Wake up early

    • Exercise

    • Have a healthy breakfast

    • Plan tasks for the day

  • Answered by AI
  • Q7. Tell me about your hobbies
  • Ans. 

    I enjoy hiking, reading, and playing the guitar in my free time.

    • Hiking: I love exploring new trails and being in nature.

    • Reading: I enjoy diving into different genres and expanding my knowledge.

    • Playing the guitar: I find it relaxing and love learning new songs.

  • Answered by AI
  • Q8. Do you have any problem in relocation?
  • Ans. 

    No, I am open to relocation for the right opportunity.

    • I am open to relocating for the right job opportunity

    • I have relocated in the past for career advancement

    • I am flexible and adaptable to new environments

  • Answered by AI
  • Q9. What if you are sent to Coimbatore? How will you manage there?
  • Ans. 

    I am adaptable and resourceful, so I will manage well in Coimbatore.

    • Research about the city's culture, language, and local amenities.

    • Connect with local professionals or expats for guidance and support.

    • Explore transportation options and create a budget for living expenses.

    • Stay open-minded and embrace the new experience with enthusiasm.

  • Answered by AI
  • Q10. Questions on modern day technology

Interview Preparation Tips

Round: Test
Experience: This round is the most common round in a general campus recruitment procedure. I have been practising for this round for quite some time, like for 4-5 months. And finally the day came. It was on 1st of September 2016. So it is still fresh in my mind. The test started at somewhere around 2 p.m (as because the number of computers were less than the number of applicants, so we were divided into batches). I was confident enough with the paper as i practised many of them at the time of preparation. We have been told that the paper will be adaptive type. But those who gave the test denied this fact. There were three rounds, aptitude, followed by verbal and logical reasoning. I was tensed at the time of the test as i was fresher and many had expectations from me. Verbal round was easy ( many questions were common with the previous years questions), logical round was easy too, but the aptitude round was a bit tricky. I did some grave mistakes in the aptitude round. So after the test was completed, i was surely not confident with the aptitude portion,(If you are unable to clear one of them, no matter how well you score in the others, you will be rejected). In the evening the results came and luckily i was selected for the second round i.e the technical round.
Tips: KEEP PRACTISING THE QUESTIONS..!! Solve questions online as the final test will be machine based and not written. try to solve the question quickly. If possible, buy an aptitude book and solve questions from there. In the final test, If you can't solve a question, SIMPLY LEAVE it and go for the next question. NEVER EVER TRY TO SEE WHAT OTHERS ARE DOING. Its a grave mistake and can cost you your career. Do your best. Believe in yourself and let your hard work speak..!!
Good luck.!!
Duration: 55 minutes
Total Questions: 55

Round: Technical Interview
Experience: The technical round started at around 10-11 a.m. The interviewer was young and neutral at expression. It wasn't easy to judge how the interviewer was. He started with the default question which was "TELL ME ABOUT YOURSELF". I practised that question for about 1000 times and as expected i nailed it. Then he went through my resume. I had included C,JAVA and DBMS as my skill sets. So the questions were from that portions only. i some how managed to answer them all. But i answered wrong in many of them. Seeing the body language of the recruiter. i was sure that i failed to impress him and i'll get rejected. But at last he asked 2 trick questions and i answered it LIKE A BOSS.!! That was the turning point of my interview and he was impressed with that. My interview was over there and shortly after, i was told that i was selected for the HR round. I was too excited as i was selected for the HR round.
Tips: PRESENCE OF MIND IS THE KEY..!!! No matter how many wrong answers you give. One impressive right answer can get you your job. Recruiter is no machine or God. He is also a man. Be confident, speak well and to the point. If you don't know the answer, at least try once. Don't be overconfident and over smart. Be yourself. Practise Tell me about yourself thoroughly.

Round: HR Interview
Experience: This round is simple conversation round. The HR will ask you question to see what you are. Your behaviour, your body language, your temper, etc, There is no rocket science to crack this round. If you manage to qualify for this round, Consider 90% job done. Be frank, jolly, answer questions to the point. Try to mix up with him. and always KEEP A SMILE ON YOUR FACE. You will definitely qualify..!!
Tips: BE CONFIDENT & BE YOURSELF..!!

General Tips: Start practising for the aptitude round from 4-5 months before the actual test. Practise from various enlisted websites. It helps a lot..!! Believe me. Strengthen your basic concepts. Give only those subjects in your resume with whom you are confident with. Do add your extra curricular activities. It helps.
Skills: Proficiency In English, Basic Concepts Of Launguages, Basic Coding, Presence Of Mind, Confidence
College Name: st.thomas college of engineering and technology
Motivation: Infosys is a big company with a very good reputation in the market. loads and loads of people are orking in the company which itself says how the company is.
Funny Moments: There were many. I am a bit humorous. So it was easy for me to make the environment light. Though i didn't cracked any joke, but my body language made it so..!!! I was asked that how will i manage with the transport system of the new place where i will go to work. As i am from Kolkata (one of the most busiest public transport system is here), i said that "Sir i have managed with the public transport here in Kolkata, transport in other city is a piece of cake for me..!!", and we both laughed. :-P

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: Lots of C questions and also questions from ur branch
Tips: Be confident..give smart answers

Round: Group Discussion
Experience: Your voice should be clear. u have to stand out from others
Tips: Be confident and rock

General Tips: Just be your best. Dont imitate anyone. Be yourself
Skill Tips: be well dressed and speak clearlly
Skills: smartness, communication
College Name: KIIT
Motivation: The welcoming attitude for core branch students

Interview Questionnaire 

3 Questions

  • Q1. Questions from hobbies etc mentioned in cv
  • Q2. Things i learned during my summer training
  • Ans. 

    During my summer training, I learned various programming languages, software development methodologies, and practical application of theoretical concepts.

    • Learned programming languages such as Java, Python, and SQL

    • Gained knowledge of software development methodologies like Agile and Waterfall

    • Applied theoretical concepts in real-world projects, enhancing problem-solving skills

  • Answered by AI
  • Q3. Questions from dbms,c,c++,java

Interview Preparation Tips

Round: Resume Shortlist
Experience: generally the questions were asked from the hobbies which i mentioned in the resume,so be honest
Tips: never over do things write what you are

Round: Test
Duration: 70 min minutes

General Tips: be positive never give up and take one step at a time
Skills: presence of mind, spoken skills specially english, body language
College Name: KIIT UNIVERSITY
Motivation: brand and working environment
Funny Moments: once u r placed every moment is happy and funny...

I was interviewed before May 2016.

Interview Questionnaire 

1 Question

  • Q1. Where do you see yourself in 5 years from now.
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Continuing to enhance my technical skills through ongoing learning and certifications

    • Taking on more leadership responsibilities within the team

    • Contributing to the company's growth and success through my expertise

    • Mentoring junior team members to help them grow in their careers

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was just a basic aptitude test.
Tips: You need to speed up things.
Duration: 1 hour
Total Questions: 120

Round: Email Round
Experience: We just had to write and Email in 5 mins.
Tips: Check your grammar.

Round: Technical + HR Interview
Experience: Just checking the communication skills.
Tips: Just need to be confident.

Skills: Written Communication Skills
College Name: Global Institute of Technology
Contribute & help others!
anonymous
You can choose to be anonymous

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Associate Software Engineer interview?
ZeMoSo Technologies interview process usually has 2-3 rounds. The most common rounds in the ZeMoSo Technologies interview process are One-on-one Round, Coding Test and Resume Shortlist.
How to prepare for ZeMoSo Technologies Associate 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 Java and Software Engineering.
What are the top questions asked in ZeMoSo Technologies Associate Software Engineer interview?

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

  1. Given a Map of fruits with there price as a key value pair respectively, find t...read more
  2. Write a program to check whether the parenthesis are properly balanced or not, ...read more
  3. Given a list of integer find the first non repeating integer using stream API o...read more

Recently Viewed

INTERVIEWS

Clarivate

No Interviews

INTERVIEWS

Astrea IT Services

No Interviews

INTERVIEWS

Mahindra & Mahindra

No Interviews

INTERVIEWS

C3S Business School

No Interviews

INTERVIEWS

Light & Wonder

No Interviews

INTERVIEWS

Hewlett Packard Enterprise

No Interviews

INTERVIEWS

Mahindra & Mahindra

No Interviews

INTERVIEWS

Nagarro

No Interviews

INTERVIEWS

Mahindra & Mahindra

No Interviews

INTERVIEWS

INCA INFOTECH TECHNOLOGIES

No Interviews

Tell us how to improve this page.

ZeMoSo Technologies Associate Software Engineer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more
ZeMoSo Technologies Associate Software Engineer Salary
based on 45 salaries
₹6.5 L/yr - ₹7.3 L/yr
20% more than the average Associate Software Engineer Salary in India
View more details

ZeMoSo Technologies Associate Software Engineer Reviews and Ratings

based on 12 reviews

3.8/5

Rating in categories

4.5

Skill development

3.3

Work-life balance

3.8

Salary

3.2

Job security

3.6

Company culture

3.7

Promotions

3.6

Work satisfaction

Explore 12 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent