Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Freecharge Team. If you also belong to the team, you can get access from here

Freecharge Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 326 Reviews

Filter interviews by

Freecharge Software Developer Interview Questions and Answers

Updated 14 Jan 2025

Freecharge Software Developer Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find Target Element in a rotating sorted Array.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Node.js concepts
  • Q2. Schema design

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basics on Node.js
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Sort array of cards in color red , blue,green
  • Ans. 

    Sort array of cards in red, blue, green colors.

    • Use a custom sorting function to sort the array based on color order.

    • Assign a numerical value to each color (e.g. red: 0, blue: 1, green: 2) and sort based on these values.

    • Implement a sorting algorithm like bubble sort or quicksort to rearrange the array based on color order.

  • Answered by AI

Skills evaluated in this interview

Freecharge interview questions for designations

 Software Developer Intern

 (1)

 Backend Developer

 (2)

 Java Developer

 (2)

 Web Developer

 (1)

 Senior Software Engineer

 (3)

 Software Development Engineer

 (1)

 Lead Software Engineer

 (1)

 Senior Software Development Engineer

 (1)

Interview questions from similar companies

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Time ,speed ,distance

Round 2 - Assignment 

Java application using oops concept

Round 3 - Technical 

(1 Question)

  • Q1. Inheritance , oops
Round 4 - HR 

(1 Question)

  • Q1. Tell me about urself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour interview. Needed to solve parts of single question. Next part would open only after completing the current part

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 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 - Aptitude Test 

Java 8, Mysql, sprin, c, c++

Round 3 - Technical 

(1 Question)

  • Q1. Questions based on core java and oops concepts

Interview Preparation Tips

Topics to prepare for Crif Solutions Software Developer interview:
  • Core Java
  • java 8

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Only Java allowed

  • Q1. 

    Sort 0 and 1 Problem Statement

    Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using an...

  • Ans. 

    Keep two index variables and traverse from the end.

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Basic intro and coding questions

  • Q1. 

    Valid Perfect Square Check

    An integer N is provided, and the task is to determine if N is a perfect square. A perfect square refers to an integer which can be expressed as the square of another integer.

    ...

  • Ans. 

    Two nested for loops and check if sum equal to given number

  • Answered Anonymously
  • Q2. 

    Merge Sort Problem Statement

    Given a sequence of numbers 'ARR', your task is to return a sorted sequence of 'ARR' in non-descending order using the Merge Sort algorithm.

    Example:

    Input:
    ARR = [5, 3, 8,...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

More difficult than the previous round

  • Q1. 

    Bottom View of Binary Tree Problem Statement

    Given a binary tree, the task is to print its bottom view from left to right. Assume the left and the right child nodes make a 45-degree angle with their paren...

  • Ans. 

    Do a level order traversal and update a hashmap based on horizontal distances from the root.

  • Answered Anonymously
Round 4 - Face to Face 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

There were no DSA questions. My interviews were based on android app development. The interviewer presented scenarios and asked how will you solve them. No particular correct answer was expected just the best approach as per me.

  • Q1. How would you implement multiple RecyclerViews on a magnified screen in an Android application?
  • Ans. 

    Tip 1 : Have a basic understanding of recycler view
    Tip 2 : Recycler with multiple view types
     

  • Answered Anonymously
  • Q2. How would you implement various activities related to cart functionality in an e-commerce application?
  • Ans. 

    Tip 1 : Basic flow and lifecycle of activities and fragments.
    Tip 2 : Knowledge about launch modes and view models.
     

  • Answered Anonymously
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR asked questions about why Mobikwik, what's your goal, how are you a good fit, etc.

Interview Preparation Tips

Eligibility criteriaCGPA - 7 & above, Active backlogs - NoneMobiKwik interview preparation:Topics to prepare for the interview - Basic DSA, Arrays, String, Trees, Problem SolvingTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Prepare advanced array questions
Tip 2 : Trees basic to medium questions
Tip 3 : Optimize solutions

Application resume tips for other job seekers

Tip 1 : Internship experience
Tip 2 : Personal Projects (remember proper details)

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Not that tough to crack

Round 2 - Coding Test 

Main focus is on the problem solving, instead of the answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on developing the problem solving skills. Programming languaue doesn't matter

Freecharge Interview FAQs

How many rounds are there in Freecharge Software Developer interview?
Freecharge interview process usually has 1 rounds. The most common rounds in the Freecharge interview process are Technical and One-on-one Round.
How to prepare for Freecharge Software 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 Freecharge. The most common topics and skills that interviewers at Freecharge expect are Stress Analysis, Bpc, Computer Accounting, Credit Operations and ESIC.
What are the top questions asked in Freecharge Software Developer interview?

Some of the top questions asked at the Freecharge Software Developer interview -

  1. Find Target Element in a rotating sorted Arr...read more
  2. sort array of cards in color red , blue,gr...read more
  3. Node.js conce...read more

Tell us how to improve this page.

Freecharge Software Developer Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more
Freecharge Software Developer Salary
based on 55 salaries
₹6.2 L/yr - ₹14.2 L/yr
11% more than the average Software Developer Salary in India
View more details

Freecharge Software Developer Reviews and Ratings

based on 16 reviews

3.7/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.1

Salary

4.0

Job security

3.7

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 16 Reviews and Ratings
Software Development Engineer
125 salaries
unlock blur

₹4.7 L/yr - ₹17.1 L/yr

Lead Software Engineer
73 salaries
unlock blur

₹14.8 L/yr - ₹35 L/yr

Software Developer
55 salaries
unlock blur

₹6.2 L/yr - ₹14.2 L/yr

Senior Software Engineer
54 salaries
unlock blur

₹11.5 L/yr - ₹27.5 L/yr

Associate Product Manager
49 salaries
unlock blur

₹9 L/yr - ₹22 L/yr

Explore more salaries
Compare Freecharge with

Paytm

3.3
Compare

Mobikwik

4.0
Compare

PhonePe

4.0
Compare

Google Pay

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