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 Developer Intern Interview Questions, Process, and Tips for Freshers

Updated 22 Feb 2024

Top ZeMoSo Technologies Software Developer Intern Interview Questions and Answers for Freshers

  • 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 t ...read more
  • Q2. 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. I ...read more
  • Q3. Least common ancestors tree

ZeMoSo Technologies Software Developer Intern Interview Experiences for Freshers

2 interviews found

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

I appeared for an interview before Feb 2023.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Oops implementation
  • Q2. Least common ancestors tree
  • Ans. 

    Finding the least common ancestor of two nodes in a tree

    • Use a method like Lowest Common Ancestor (LCA) to find the least common ancestor of two nodes in a tree

    • Traverse the tree to find the paths from the root to each node, then compare the paths to find the LCA

    • Consider edge cases like when one node is the ancestor of the other or when one of the nodes is not in the tree

  • Answered by AI
  • Q3. Structure in c++
  • Ans. 

    Structure in C++ is a user-defined data type that allows grouping of variables of different data types under a single name.

    • Structures are used to create complex data types by grouping variables together.

    • They can contain variables of different data types.

    • Structures are defined using the 'struct' keyword.

    • Example: struct Person { string name; int age; };

    • Example: Person p1;

  • Answered by AI
  • Q4. Node implementation
  • Q5. Sql query aasics

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover basics of DSA and OOp

Skills evaluated in this interview

I appeared for an interview 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. 

    Find sum of maximum and minimum elements in an array with least number of comparisons.

    • Iterate through the array and compare elements in pairs to find maximum and minimum simultaneously.

    • Keep track of current maximum and minimum as you iterate through the array.

    • After iterating through the array, sum up the maximum and minimum found.

    • Example: For input [1, 3, 5, 7, 9], compare 1 with 3, 5 with 7, and 3 with 9 to find min a...

  • Answered by AI
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. 

    Design a constant time data structure for key-value mappings with operations like INSERT, DELETE, SEARCH, GET, GET_SIZE, and IS_EMPTY.

    • Use a hash table to store key-value pairs for constant time operations.

    • Implement INSERT by hashing the key and storing the value at the corresponding index.

    • For DELETE, simply remove the key-value pair from the hash table.

    • SEARCH can be done by checking if the key exists in the hash table.

    • ...

  • Answered by AI

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 for Fresher

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Online coding round.
We could only write pseudo code and couldn't test against test cases.

  • Q1. 

    Binary Tree Level Order Traversal

    You are given a binary tree of integers. Your task is to return the level order traversal of the given tree.

    Input:

    The first line contains an integer 'T', representing...
  • Ans. 

    Return the level order traversal of a binary tree given in level order.

    • Use a queue to perform level order traversal of the binary tree

    • Start by pushing the root node into the queue

    • While the queue is not empty, dequeue a node, print its value, and enqueue its children

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Easy

It was onsite face to face technical round where i was asked 2 coding questions.
It lasted for 40-50 minutes.

  • Q1. 

    Kth Ancestor in a Binary Tree

    You are given an arbitrary binary tree consisting of N nodes numbered from 1 to N, an integer K, and a node TARGET_NODE_VAL from the tree. Your task is to find the Kth ancest...

  • Ans. 

    Find the Kth ancestor of a given node in a binary tree.

    • Traverse the tree to find the path from the target node to the root node.

    • Store the path in a list and return the Kth element from the end.

    • Handle cases where the Kth ancestor does not exist by returning -1.

  • Answered by AI
  • Q2. 

    Equilibrium Indices in a Sequence

    You are given an array/list named 'SEQUENCE', which consists of 'N' integers. The task is to identify all equilibrium indices in this sequence.

    Explanation:

    An equilibr...

  • Ans. 

    Identify equilibrium indices in a given sequence by finding positions where sum of elements before and after is equal.

    • Iterate through the sequence and calculate prefix sum and suffix sum at each index

    • Compare prefix sum and suffix sum to find equilibrium indices

    • Handle edge cases where no equilibrium index exists

    • Return the indices as a sequence of integers or an empty sequence

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

Only 7 students were shortlisted after the first face to face round out of 40 students.
The interviewer seemed cool and was trying to calm down me as i was getting nervous.
Again there were 2 coding questions.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to reverse the list

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the head of the reversed linked list once the reversal is complete

  • Answered by AI
Round 4 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This was the last technical round and there were only 5 students left at the end of day.
The interview started at around 6:30 in the evening.

  • Q1. 

    Replace with Sum of Greater Nodes Problem Statement

    Convert a given binary search tree (BST) with 'N' nodes into a Greater Tree. In the Greater Tree, each node's data should be updated to the sum of its o...

  • Ans. 

    Convert a binary search tree into a Greater Tree by updating each node's data to the sum of its original data plus the data of all nodes with greater or equal values.

    • Traverse the BST in reverse inorder (right, root, left) to update nodes with the sum of greater nodes.

    • Keep track of the sum of greater nodes encountered so far while traversing.

    • Update each node's data with the sum of greater nodes and continue traversal.

  • Answered by AI
  • Q2. 

    Nuts and Bolts Problem

    You are given a collection of 'N' nuts and 'N' bolts, each having unique sizes. Your objective is to match each nut with its corresponding bolt based on size, adhering to a one-to-o...

  • Ans. 

    Matching nuts and bolts based on size in a one-to-one mapping strategy.

    • Iterate through the nuts and bolts arrays to find matching pairs based on size.

    • Use sorting algorithms like quicksort to efficiently match nuts and bolts.

    • Ensure the implementation modifies the input arrays directly to reflect the proper matched order.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7.5 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - DSA, CS FUNDAMENTALS, WEB CONCEPTS, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Take your time before directly jumping onto the solution even if you have done the code already, it might be possible that interviewer would add any constraints of his own choice.

Tip 2 : Speak out loud, that's very important. If you are stuck onto something in between the interview, don't just sit idle or give up. Talk to your interviewer, let him/her know what's going in your mind, what approach are you trying to implement. The interviewer is your only friend in that room. 

Tip 3 : Don't worry if you haven't been into Competitive Programming before, you can still crack a lot of companies with decent DSA skills, projects are add on.

Tip 4 : For preparation, go through coding ninja's course thoroughly. It's very likely to encounter same questions that are already in the course itself. Common problems like, stock span, balanced parentheses, edit distance-DP, etc.

Tip 5 : Don't panic on seeing a question that you haven't done before. Try to break the given problem into small problems first just like we do in DP, it will surely help you out in building logic if not solution.

Application resume tips for other job seekers

Tip 1 : Take a nice template for resume, you can even refer sites like novoresume.com. It has got good templates, just pick any with no fancy fonts and colors. Keep it simple.

Tip 2 : Be very specific. Write out important stuff only if you applying for a tech job. No one's going to see your dance/acting skills while interviewing you.

Tip 3 : If you have mentioned your projects, make sure you add your source code's link/github repo link as hyperlink to it. That's very important, it helps interviewer know that you have done this project and you're not faking it.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Company Website and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

DSA Medium Level Questions. Solve within 3 Hours.

Round 2 - One-on-one 

(1 Question)

  • Q1. 1 Question on String and 1 question on Dynamic Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA Well and Have good Knowledge of Java. But it is not a good Company to join. Please don't join that company

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Ans. 

    Check if binary tree is balanced or not.

    • A balanced binary tree has the height of left and right subtrees differ by at most 1.

    • Recursively check the height of left and right subtrees and compare.

    • Use a helper function to calculate the height of a subtree.

    • Time complexity: O(nlogn) for a balanced tree, O(n^2) for a skewed tree.

  • Answered by AI
  • Q2. Detect loops in linked list.
  • Ans. 

    Detect loops in a linked list.

    • Use two pointers, one moving at a faster pace than the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • To detect the start of the loop, reset one pointer to the head and move both pointers at the same pace.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

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

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

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.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Questions regarding quants, logical reasoning, verbal assessment and also a coding part

Round 3 - Technical 

(1 Question)

  • Q1. Lot of technical questions were there related to sql, dbms and coding as well
Round 4 - HR 

(1 Question)

  • Q1. Lot of basic managerial questions were there

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for any of the technical questions and be confident in the interview process.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Basic aptitude questions were asked by interviewer, the way of communication of interviewer was pretty cool. overall good experience throughout the interview process.

Round 3 - Coding Test 

Oops concepts, basic dbms questions, cloud computing questions etc

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Software Developer Intern interview for freshers?
ZeMoSo Technologies interview process for freshers usually has 1 rounds. The most common rounds in the ZeMoSo Technologies interview process for freshers are One-on-one Round.
What are the top questions asked in ZeMoSo Technologies Software Developer Intern interview for freshers?

Some of the top questions asked at the ZeMoSo Technologies Software Developer Intern interview for freshers -

  1. Least common ancestors t...read more
  2. Structure in ...read more
  3. Oops implementat...read more

Tell us how to improve this page.

ZeMoSo Technologies Software Developer Intern Interview Process for Freshers

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

kipi.ai Interview Questions
4.1
 • 58 Interviews
Affine Interview Questions
3.3
 • 49 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
View all
ZeMoSo Technologies Software Developer Intern Salary
based on 5 salaries
₹6.9 L/yr - ₹7 L/yr
At par with the average Software Developer Intern Salary in India
View more details

ZeMoSo Technologies Software Developer Intern Reviews and Ratings

based on 3 reviews

2.2/5

Rating in categories

4.1

Skill development

2.1

Work-life balance

2.5

Salary

1.6

Job security

2.9

Company culture

2.1

Promotions

2.4

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
83 salaries
unlock blur

₹9.3 L/yr - ₹30 L/yr

Associate Software Engineer
45 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Software Engineer
37 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Senior Software Engineer 1
34 salaries
unlock blur

₹12.5 L/yr - ₹22 L/yr

Software Engineer2
31 salaries
unlock blur

₹10 L/yr - ₹14 L/yr

Explore more salaries
Compare ZeMoSo Technologies with

Saama Technologies

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

Cyfuture

3.0
Compare

DISYS

3.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview