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
3.7

based on 165 Reviews

Filter interviews by

ZeMoSo Technologies Senior Developer Interview Questions and Answers

Updated 31 Jul 2024

ZeMoSo Technologies Senior Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Java related and programming questions

Round 2 - Technical 

(3 Questions)

  • Q1. Java basic questions
  • Q2. Springboot and Database question
  • Q3. Problem Solving subsequence longest
  • Ans. 

    Find the longest subsequence in an array of strings

    • Iterate through the array of strings and compare each string with the next one to find the longest common subsequence

    • Use dynamic programming to efficiently find the longest common subsequence

    • Example: ['abc', 'abg', 'bdf', 'aeg', 'acefg'] - The longest subsequence is 'aeg'

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ZeMoSo Technologies Senior Developer interview:
  • Java
  • SPringboot
  • SQL
Interview preparation tips for other job seekers - having the understanding of things work gets better response than just questions.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at G L Bajaj Institute of Technology & Management, Greater Noida and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

They asked some general Quantitative and logical questions and code snippets.

Round 2 - Technical 

(2 Questions)

  • Q1. String Reverse and Two Sum
  • Q2. Related to my projects and Tech Stacks
Round 3 - Technical 

(2 Questions)

  • Q1. This is the Second technical round. The interviewer asked about everything from my project.
  • Q2. Asked some sql queries like joins and set operation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and Understand the business idea of your Project and Tech Stacks
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Code Snept question with 3-4 Reasoning question. Google form

Round 2 - Assignment 

Pen paper coding round. String , Array . Linkedlist , graph, questions

Round 3 - Technical 

(3 Questions)

  • Q1. Maximum Spaning
  • Q2. Nearest Prime number
  • Ans. 

    To find the nearest prime number, iterate from the given number in both directions until a prime number is found.

    • Start iterating from the given number in both directions to find the nearest prime number.

    • Check if a number is prime by dividing it by all numbers less than its square root.

    • Keep track of the closest prime number found during the iteration.

  • Answered by AI
  • Q3. Second Maximum Number in Array
  • Ans. 

    Find the second maximum number in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Project Question
  • Q2. Robot question of DSA
  • Q3. Stock Buy and sell - VI . Leetcode Hard
  • Q4. Leetcode Medium

Skills evaluated in this interview

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

I applied via campus placement at Krishna Institute of Engineering and Technology, Ghaziabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Medium level questions asked

Round 2 - Coding Test 

Simple easy to medium 2 questions asked of string and array

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. JavaScript like fetch axios and others
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at S R Engineering College, Ranga Reddy and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

MCQ round with few apti, 2 coding too.

Round 2 - Technical 

(2 Questions)

  • Q1. Into, projects,
  • Q2. Print node with no edge in a unidirectional graph
  • Ans. 

    To print nodes with no edges in a unidirectional graph, iterate through all nodes and print those without any outgoing edges.

    • Iterate through all nodes in the graph

    • For each node, check if it has any outgoing edges

    • If a node has no outgoing edges, print it

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Intro, projects, dsa
  • Q2. Prime number code

Interview Preparation Tips

Topics to prepare for Impact Analytics Backend Developer interview:
  • Binary Tree
  • DSA
  • Flask
Interview preparation tips for other job seekers - I never heard back from them, its been 6 months
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

First round 14 Java ,3 SQL ,3 apptitude

Round 2 - Coding Test 

3 Java questions strings and Java

Round 3 - Technical 

(2 Questions)

  • Q1. About the programming
  • Q2. Your coding questions
Round 4 - HR 

(2 Questions)

  • Q1. Self Intro about you
  • Ans. 

    I am a passionate software developer with 5 years of experience in full-stack development.

    • Experienced in Java, JavaScript, HTML, CSS, and SQL

    • Strong problem-solving skills and ability to work in a team

    • Developed a web application for a startup company using React and Node.js

  • Answered by AI
  • Q2. About your resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is observable and promises
  • Ans. 

    Observables and promises are both used for handling asynchronous operations in JavaScript.

    • Observables are used for handling multiple values over time, while promises are used for handling a single value at a time.

    • Observables can be cancelled, while promises cannot be cancelled.

    • Promises have a built-in mechanism for error handling using the catch method, while observables use the error callback function.

    • Observables are ...

  • Answered by AI
Round 2 - Coding Test 

Write a code for unique array

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

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

The interviewer asked about javascript basics and DSA questions and some typescript questions

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. I don't know why they rejected me
  • Q2. What ever they asked me for coding part the output is correct and logic is also correct

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Senior Developer interview?
ZeMoSo Technologies interview process usually has 2 rounds. The most common rounds in the ZeMoSo Technologies interview process are Coding Test and Technical.
What are the top questions asked in ZeMoSo Technologies Senior Developer interview?

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

  1. Problem Solving subsequence long...read more
  2. Springboot and Database quest...read more
  3. java basic questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 ZeMoSo Technologies interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

ZeMoSo Technologies Senior Developer Reviews and Ratings

based on 2 reviews

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

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

₹12.7 L/yr - ₹30 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Software Engineer
34 salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Software Engineer2
28 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.9
Compare

Mphasis

3.4
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview