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 Full Stack Developer Interview Questions and Answers

Updated 8 Jul 2024

ZeMoSo Technologies Full Stack Developer Interview Experiences

1 interview found

Full Stack Developer Interview Questions & Answers

user image Pranay Usgaonkar

posted on 8 Jul 2024

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

First round was a coding round on coderbyte

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently appeared for the interview in Zemoso Technologies. The structured approach to the interview process made it clear and engaging, and I appreciated insightful questions that helped me showcase my skills. Thanks to Ritu Aggarwal for creating a welcoming atmosphere, it made the interview experience very positive

Interview questions from similar companies

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 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 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 experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Programming questions on string, array, numbers.
Difficultity level was simple.

Round 2 - Coding Test 

5 questions were asked out of which 2 of them were easy and rest of them were hard.
Easy :- sorting, numbers
Hard :- bitwise, mathematical equation question.

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Good question with nice logic

Round 2 - Coding Test 

5 question in 1 hour so it's kinda difficult to manage time

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 Naukri.com and was interviewed in May 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 

5/20 Were Basic Aptitude
15/20 Were Technical Aptitude based on the selection of Programming Language

Round 3 - not selected 

(2 Questions)

  • Q1. Introduce your self. describe ur profiency
  • Q2. Self intro your technical knowledge explaination
Round 4 - HR 

(1 Question)

  • Q1. Same or personality question woulc be asked
  • Ans. Same anwer and your willingness of a role
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Start up company.
No Question Will be with basic Knowledge of Programing
High Profiency needed for 1st round too.

I applied via Naukri.com and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About avabasic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare throughly before attending test

I applied via Campus Placement and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude questions mainly on quantitative

Round 2 - Coding Test 

Google docs was shared which has 5 coding questions mainly on array and string.

Round 3 - Technical 

(4 Questions)

  • Q1. Interviewer introduced himself , then told the flow of interview ie. 2 coding question will be asked then he asked to introduce myself
  • Q2. Occurance of characters in string
  • Ans. 

    The question is about finding the occurrence of characters in a string.

    • Iterate through the string and count the occurrence of each character.

    • Use a hash table to store the count of each character.

    • Consider the case sensitivity of the characters.

    • Handle special characters and spaces as required.

  • Answered by AI
  • Q3. Angle between hour and minute hand of clock at a given time
  • Ans. 

    The angle between hour and minute hand of a clock at a given time.

    • Calculate the angle made by the hour hand with 12 o'clock

    • Calculate the angle made by the minute hand with 12 o'clock

    • Find the difference between the two angles

    • If the difference is greater than 180 degrees, subtract it from 360 degrees

    • The result is the angle between the hour and minute hand

  • Answered by AI
  • Q4. Both question I was able to solve quickly interview was sheduled for one hour but i solved questions in 23 minutes so interview ended. I was called for second techinal round
Round 4 - Technical 

(4 Questions)

  • Q1. Same format as above introduction and 2 coding questions
  • Q2. 1 Integer to roman it took me some time to solve the question
  • Q3. 2 given sum and we have to print all the subsequences in array with given sum
  • Ans. 

    Printing all the subsequences in an array with a given sum.

    • Use recursion to generate all possible subsequences.

    • Check if the sum of each subsequence is equal to the given sum.

    • Print the subsequences that satisfy the condition.

    • Time complexity: O(2^n).

  • Answered by AI
  • Q4. The interview took almost 45 minutes and i was able to solve both questions so i was selected for third round ie technical + HR
Round 5 - HR 

(5 Questions)

  • Q1. First introduction then as all rounds 2 coding questions and then HR questions were asked
  • Q2. 1 print string without taking repeating characters eg helper - helpr
  • Ans. 

    The task is to print a string without any repeating characters.

    • Iterate through the string and keep track of the characters seen so far.

    • If a character is already seen, skip it.

    • Otherwise, add it to the output string.

    • Return the output string.

  • Answered by AI
  • Q3. 2 sort array of 0s and 1s in only one loop solution was using two pointers
  • Ans. 

    Sort an array of 0s and 1s in one loop using two pointers.

    • Use two pointers, one starting from the beginning and the other from the end.

    • Swap the values at the pointers if the value at the beginning pointer is greater than the value at the end pointer.

    • Continue until the pointers meet in the middle.

    • Time complexity is O(n).

  • Answered by AI
  • Q4. I solved both the questions then questions were asked on projects
  • Q5. Difficulties in project how you learn new technology After two days I received mail and I was selected for software developer role

Interview Preparation Tips

Topics to prepare for Raja Software Labs Software Developer interview:
  • arrays
  • string
Interview preparation tips for other job seekers - - Practice questions on array and string
- Also see puzzles on GFG they are also asked frequently
- No need to revise DBMS , OS for RSL interviews only coding is necessary

Skills evaluated in this interview

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Full Stack Developer interview?
ZeMoSo Technologies interview process usually has 1 rounds. The most common rounds in the ZeMoSo Technologies interview process are Coding Test.
How to prepare for ZeMoSo Technologies Full Stack Developer 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 Angularjs, Angular, Design Patterns, JQuery and Java.

Tell us how to improve this page.

ZeMoSo Technologies Full Stack Developer Interview Process

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 Full Stack Developer Salary
based on 6 salaries
₹3 L/yr - ₹7 L/yr
47% less than the average Full Stack Developer Salary in India
View more details

ZeMoSo Technologies Full Stack Developer Reviews and Ratings

based on 4 reviews

3.4/5

Rating in categories

3.7

Skill development

2.3

Work-life balance

3.2

Salary

1.5

Job security

3.1

Company culture

2.6

Promotions

3.1

Work satisfaction

Explore 4 Reviews and Ratings
Senior Software Engineer
76 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

Software Engineer2
30 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

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