Upload Button Icon Add office photos

Filter interviews by

ZestMoney Software Developer Interview Questions and Answers

Updated 11 May 2024

ZestMoney Software Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

It was leetcode questions for 60 min for 2 questions.

Round 2 - HR 

(1 Question)

  • Q1. Tell me about your self
Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about your work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - no tips such.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Data Structure and algorithm
  • Q2. System design question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Time and work ,time and distance

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview are very friendly and give time to explain the question asked in interview
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1 - Easy Medium Question. Discuss the approach with interviewer and then implement it. The code should work, thats important.
Round 3 - Technical 

(1 Question)

  • Q1. LLD round to design Chess.
Round 4 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Grilling on resume and past experience questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2023. There were 3 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 - Technical 

(1 Question)

  • Q1. There were 3 dsa questions which were of topic arrays and strings
Round 3 - Technical 

(1 Question)

  • Q1. It was more like a managerial round where they asked questions about resume projects and past experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a nice company to work with!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They have problem of K sorted array and you need to make an sorted array of it.

Round 2 - HR 

(2 Questions)

  • Q1. Your current job role
  • Q2. Software Developer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the DSA and basic OOPs question.

I applied via Walk-in and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic questions about lists/arrays. swap
  • Q2. MCQs

Interview Preparation Tips

Interview preparation tips for other job seekers - Its very easy interview process. You just need to know basics. If you don't get selected its because you are too good to exploit. Exploitable people get hired easily here.
Round 1 - Aptitude Test 

Basic logic question

Round 2 - Technical 

(1 Question)

  • Q1. Basic core knowledge
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - All are good and hr is very good in nature

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

First round was coding round, where i was asked 2 DS algo questions, 1 was easy and other was of medium difficulty

  • Q1. Shortest Path in a Binary Matrix

    You have been given a binary matrix of size 'N' * 'M' where each element is either 0 or 1. You are also given a source and a destination cell, both of them ...

  • Ans. 

    First i explained the approach. when he was satisfied with the approach, I was asked to code it.

  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Easy

I was asked to design url shortner

  • Q1. System Design Question

    I was asked to design url shortner

  • Ans. 

    Tip 1 : First clearly ask the requirements of the problem.
    Tip 2 : Start with simple design and then narrow the constraints 
    Tip 3 : Explain the reasons begin ur choices of data structures/ DB

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

This was hiring manager round

  • Q1. Basic HR questions

    One coding problem, discussion about past projects and other behavioural questions

  • Ans. 

    Tip 1 : Prepare well about ur past projects, bcoz they will be asking it for sure
    Tip 2 : Be confident and humble
    Tip 3 : Be Genuine

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating System, DBMS, OOPSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DS and algo well(i prepared from GFG)
Tip 2 : Must know basics of DBMS and OS
Tip 3 : Be confident and genuine

Application resume tips for other job seekers

Tip 1 : Prepare resume iteratively
Tip 2 : show ur resume to seniors and ask for suggestions

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. Third greatest element

    Given an array/list 'ARR' of ‘N’ distinct integers, you are supposed to find the third largest element in the given array 'ARR'.

    Input Format :
    The first line conta...
  • Ans. Sorting Based Approach

    The idea is to sort the array in non-decreasing order, and then return the third element from the back of the array.

     

    The steps are as follows :

    1. Sort the array in non-decreasing order.
    2. Return the third element from the back of the array.
    Space Complexity: O(logn)Explanation:

    O(1)

     

    We are not using any extra space. Thus, the overall space complexity will be O(1).

    Time Complexity: O(nlogn)Explan...
  • Answered by CodingNinjas
  • Q2. Longest Palindromic Substring

    You are given a string (STR) of length N.

    Your task is to find the longest palindromic substring. If there is more than one palindromic substring with the maximum length, re...

  • Ans. Brute Force
    1. Generate substrings of the given string such that substring having greater length will be generated first.
    2. To do this, run a loop where iterator ‘LEN’ will go from N to 1, where N is the length of the given string.
    3. Run a nested loop and fix an iterator ‘j’ that will point at the starting index of the substring.
    4. Get the substring from ‘j’ to ‘j’ + ‘LEN’.
    5. If the substring is a palindrome, return the substring (as ...
  • Answered by CodingNinjas
  • Q3. Ninja and Geometry

    Ninja has been given 2 points ‘A’ and ’B’ that corresponds to the line ‘AB’ and ‘P’, ’Q’ that corresponds to line ‘PQ’ on a 2D plane. Ninja wants to find the intersection point of the ‘A...

  • Ans. Mathematics

    The idea behind this approach is to derive the equation of both of the lines ‘AB’ and ‘PQ’ and check if the Slope of these two lines is equal or not. Following are the two cases:

    • If the slope of ‘AB’ and ‘PQ’ is the same that means they are parallel so we return -1.
    • Else there must a point where ‘AB’ and ‘PQ’ are intersecting.

    For a better understanding of this approach, Assume that we have two points which are...

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

ZestMoney Interview FAQs

How many rounds are there in ZestMoney Software Developer interview?
ZestMoney interview process usually has 3 rounds. The most common rounds in the ZestMoney interview process are Coding Test, HR and One-on-one Round.

Tell us how to improve this page.

People are getting interviews through

based on 1 ZestMoney interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
ZestMoney Software Developer Salary
based on 14 salaries
₹12.1 L/yr - ₹22 L/yr
135% more than the average Software Developer Salary in India
View more details

ZestMoney Software Developer Reviews and Ratings

based on 6 reviews

4.2/5

Rating in categories

3.4

Skill development

4.6

Work-Life balance

3.6

Salary & Benefits

3.6

Job Security

4.4

Company culture

3.6

Promotions/Appraisal

3.4

Work Satisfaction

Explore 6 Reviews and Ratings
Area Sales Manager
34 salaries
unlock blur

₹3.8 L/yr - ₹6.7 L/yr

Assistant Manager
24 salaries
unlock blur

₹6 L/yr - ₹16 L/yr

Senior Associate
20 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Product Manager
16 salaries
unlock blur

₹15 L/yr - ₹35 L/yr

Software Developer
14 salaries
unlock blur

₹12.1 L/yr - ₹22 L/yr

Explore more salaries
Compare ZestMoney with

LazyPay

3.8
Compare

Payed

2.8
Compare

Axio

3.8
Compare

LendingKart

3.2
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