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 and Answers

Updated 22 Feb 2024

ZeMoSo Technologies Software Developer Intern Interview Experiences

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

    SQL queries are used to interact with databases, allowing for data retrieval, manipulation, and management.

    • SQL stands for Structured Query Language, used for managing relational databases.

    • Basic SQL commands include SELECT, INSERT, UPDATE, DELETE.

    • Example of SELECT: SELECT * FROM users; retrieves all records from the 'users' table.

    • Example of INSERT: INSERT INTO users (name, age) VALUES ('Alice', 30); adds a new user.

    • Exam...

  • Answered by AI

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

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

I applied via Referral and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic programming concepts, OOPs & logical questions
  • Q2. Particular technology related and basic array programming

Interview Preparation Tips

Interview preparation tips for other job seekers - interview process was very smooth

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 mins
Round difficulty - Medium

  • Q1. 

    Railway Seat Berth Determination

    Given a railway seat number represented as an integer, determine if it is a valid seat number and identify its berth type. Possible berth types include lower berth, middle...

  • Ans. 

    Given a railway seat number, determine if it is valid and identify its berth type.

    • Parse input integer 't' for number of test cases

    • For each test case, check if seat number is valid (1 <= N <= 100)

    • Identify berth type based on seat number and output the result

    • Possible berth types are Lower, Middle, Upper, Side Lower, and Side Upper

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 mins
Round difficulty - Hard

First they asked me to introduce myself then they started questioning on oops concept from basic to advance level such as inheritance, polymorphism, abstraction, exception handling , STL etc. Next they started questioning on data structures. They asked me the logic of “how to find the middle of a linked list”.

  • Q1. 

    Matrix Symmetry Check

    You are provided with a square matrix. Your task is to return true if the matrix is symmetric; otherwise, return false.

    A symmetric matrix is characterized by its transpose being eq...

  • Ans. 

    Check if a square matrix is symmetric by comparing it with its transpose.

    • Iterate through the matrix and compare each element with its corresponding element in the transpose

    • If any pair of elements do not match, return false immediately

    • If all pairs match, return true at the end

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from K. K. Wagh Institute Of Engineering Education And Research. I applied for the job as Software Engineer in PuneEligibility criteria6.0 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, Python, SQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Clear the basic concepts of data structure and OOPs.
Tip 2 : Use coding ninja platform and Hackerearth for practice on coding skills.
Tip 3 : Use Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1: Make your resume short and try to make it of one page only.
Tip 2: Add relevant keywords

Final outcome of the interviewRejected

Skills evaluated in this interview

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 Questionnaire 

2 Questions

  • Q1. 1.Tell me about your self?
  • Q2. 2.what is you learn in institution?

Interview Preparation Tips

Interview preparation tips for other job seekers - It's real good experience and I have learn and This is my first call interview..So next time i will give my full potential and do well thanks for give me an opportunity

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

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

ZeMoSo Technologies Interview FAQs

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

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

  1. Least common ancestors t...read more
  2. Structure in ...read more
  3. Sql query aas...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 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 Developer Intern Salary
based on 4 salaries
₹2.4 L/yr - ₹8 L/yr
11% more than 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
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.0
Compare
write
Share an Interview