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

Filter interviews by

Freecharge Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top Freecharge Interview Questions and Answers

View all 40 questions

Freecharge Interview Experiences

Popular Designations

53 interviews found

I applied via Referral and was interviewed in Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions on Problem Solving, DS & Algorithms and System designing were frequently asked.
  • Q2. How can you design a high scale Multithreaded system?
  • Ans. 

    Designing a high scale Multithreaded system requires careful consideration of thread synchronization, load balancing, and resource management.

    • Identify the critical sections of code that need to be synchronized

    • Choose an appropriate synchronization mechanism such as locks or semaphores

    • Implement load balancing to distribute work evenly across threads

    • Use thread pools to manage resources and limit the number of threads crea...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please start focusing on your problem solving skills from the starting. Learn data structures and algorithms. There are frequently asked questions which are asked repeatedly in many company rounds. So try to solve as many questions as you can . Also, as your experience grows in the industry, then start learning some designing problems to learn more about scalability, reliability, latency and all. This helps you a lot in cracking interviews in well known companies. So keep this advice and start learning from today. Happy to help you!!

Skills evaluated in this interview

Software Development Engineer Lead Interview Questions asked at other Companies

Q1. How can you design a high scale Multithreaded system?
View answer (1)

Quality Analyst Interview Questions & Answers

user image pankaj dhiman

posted on 6 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General audit parameters

Round 2 - Technical 

(4 Questions)

  • Q1. General excel formula
  • Q2. Why we do rca
  • Q3. How we calculate variancein calibration
  • Q4. Why we use dollar sign in excel

Quality Analyst Interview Questions asked at other Companies

Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
View answer (3)
Freecharge Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Nice one details with

Round 2 - Technical 

(2 Questions)

  • Q1. Java script based wuestionss
  • Q2. Dsa based questions
Round 3 - HR 

(2 Questions)

  • Q1. Normal infect arc toon and breifing
  • Ans. 

    The question is asking about the normal infection arc in cartoons and providing a briefing on it.

    • Normal infection arc in cartoons typically involves a character getting sick or infected with a virus or bacteria.

    • The character may exhibit symptoms such as sneezing, coughing, or feeling unwell.

    • Other characters may try to help the infected character by providing remedies or seeking medical help.

    • The infection arc usually re...

  • Answered by AI
  • Q2. Nirmal interaction and briefing

Web Developer Interview Questions asked at other Companies

Q1. Last Index of Element The task is to determine the index of the last occurrence of a specified element x within an array that may contain duplicate elements. If the element is not present, return -1. Input: The first line contains an intege... read more
View answer (1)
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.
  • Ans. 

    Search for target element in a rotated sorted array.

    • Use binary search to find the pivot point where rotation happens.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle cases where the target element is on the left or right side of the pivot.

  • Answered by AI

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Freecharge interview questions for popular designations

 Software Developer

 (4)

 Graduate Engineer Trainee (Get)

 (4)

 Senior Software Engineer

 (3)

 Team Lead

 (3)

 Product Manager

 (2)

 Software Development Engineer Lead

 (2)

 Backend Developer

 (2)

 Java Developer

 (2)

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Tell me risk framework and how will you manage in Fintech company?
  • Ans. 

    Risk framework is a structured approach to identifying, assessing, and managing risks within an organization. In a Fintech company, I would implement a risk framework tailored to the specific risks faced in the industry.

    • Understand the unique risks in the Fintech industry such as cybersecurity, regulatory compliance, and operational risks.

    • Develop a risk management strategy that aligns with the company's objectives and r...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read risk around Fintech industry

Manager Internal Audit Interview Questions asked at other Companies

Q1. How will you perform an audit of a bank where credit card department has not reported any revenue leakage ? how will you test the controls?
View answer (1)

Get interview-ready with Top Freecharge Interview Questions

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

I was interviewed in Jul 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain Virtual Dom
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used for efficient updates and rendering in React applications.

    • Virtual DOM is a concept in React where a lightweight copy of the actual DOM is created and updated in memory.

    • When changes are made to the state of a component, React compares the virtual DOM with the actual DOM and only updates the necessary parts, minimizing performance impact.

    • This process of updating t...

  • Answered by AI
  • Q2. Explain New Features in ReactJS
  • Ans. 

    ReactJS has introduced new features like Hooks, Context API, Suspense, and Concurrent Mode.

    • Introduction of Hooks allows functional components to have state and lifecycle methods.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • Suspense enables components to suspend rendering while waiting for something to load, like data from an API.

    • Concurrent ...

  • Answered by AI
  • Q3. Explain High Order Components using the example
  • Ans. 

    High Order Components are functions that take a component and return a new component with additional functionality.

    • HOCs are used to share code between components.

    • They can be used for adding authentication, logging, or other functionalities to components.

    • Example: a HOC that adds a loading spinner while data is being fetched.

  • Answered by AI
  • Q4. Explain the reducer method in js using the example
  • Ans. 

    Reducer method in JavaScript is used to manage state changes in applications by taking the current state and an action as input and returning a new state.

    • Reducer function takes two parameters - the current state and an action

    • It then determines how the state should change based on the action type

    • The reducer function returns a new state based on the action type

  • Answered by AI

Skills evaluated in this interview

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (2)

Jobs at Freecharge

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

I applied via Approached by Company and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

The first round is an aptitude assessment that consists of coding questions focused on dynamic programming, as well as medium to hard level aptitude and reasoning questions.

Round 2 - Coding Test 

The second round focuses on coding and consists of data structure and algorithm questions related to arrays, linked lists, basic Java concepts, strings, and project-based questions from the resume.

Round 3 - Coding Test 

The third round also consists of coding, which includes challenging data structures and algorithms questions based on graphs, trees, multithreading, and difficult SQL-based questions.

Round 4 - HR 

(2 Questions)

  • Q1. What are your short-term and long-term goals?
  • Ans. 

    My short-term goal is to enhance my skills in backend development and contribute effectively to the team. My long-term goal is to become a lead developer and work on innovative projects.

    • Short-term goal: Improve backend development skills

    • Short-term goal: Contribute effectively to the team

    • Long-term goal: Become a lead developer

    • Long-term goal: Work on innovative projects

  • Answered by AI
  • Q2. How do you approach solving a large problem within a limited timeframe?
  • Ans. 

    I break down the problem into smaller tasks, prioritize them, and focus on the most critical aspects first.

    • Break down the problem into smaller, more manageable tasks

    • Prioritize tasks based on importance and impact

    • Focus on critical aspects first to ensure progress

    • Regularly reassess and adjust the plan as needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly, study data structures and algorithms as well as SQL, use your time wisely, think critically, remain calm, and take your time.

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. How to write docker file
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Start with a base image using the FROM keyword

    • Use the RUN keyword to execute commands in the container

    • Use the COPY keyword to add files from the host machine to the container

    • Use the CMD keyword to specify the command to run when the container starts

  • Answered by AI
  • Q2. Explain file system in linux
  • Ans. 

    File system in Linux organizes and manages data on storage devices.

    • File system controls how data is stored, accessed, and managed on storage devices.

    • Linux uses a hierarchical file system structure with directories and files.

    • Common file systems in Linux include ext4, XFS, and Btrfs.

    • File permissions in Linux determine who can read, write, or execute files.

    • Mounting and unmounting drives allows access to different file sys

  • Answered by AI
  • Q3. Few Linux commands
  • Q4. Kubernetes question
Round 2 - Technical 

(2 Questions)

  • Q1. Kubernetes case based question
  • Q2. Linux scripting

Interview Preparation Tips

Interview preparation tips for other job seekers - They need to improve their process for recruitment, I had given second round and after this they made my application in hold. I asked many times what’s the status they told me status is pending wait for few days and last i asked again they just ignored msg it sounds very rude.

Skills evaluated in this interview

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode medium and hard

zigzag traversal of BT
merge K sorted Linked List

Round 2 - Technical 

(1 Question)

  • Q1. Focussed mainly on Java, Spring and HLD
Round 3 - Technical 

(1 Question)

  • Q1. LLD of booking system, designing a thread safe array blocking queue
Round 4 - HR 

(1 Question)

  • Q1. Normal salary discussion

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Longest Consecutive Sequence
  • Ans. 

    Find the length of the longest consecutive elements sequence in an array.

    • Sort the array to ensure consecutive elements are adjacent

    • Iterate through the array and keep track of the current consecutive sequence length

    • Update the longest consecutive sequence length as you iterate

  • Answered by AI
  • Q2. Core Java Questions
Round 2 - Technical 

(2 Questions)

  • Q1. Executor Service and it's code
  • Ans. 

    Executor Service is a framework provided by Java for managing and executing asynchronous tasks.

    • Executor Service allows you to easily create and manage threads for executing tasks.

    • It provides a way to control the number of threads used for executing tasks, which can help prevent resource exhaustion.

    • You can submit tasks to an Executor Service using methods like execute() or submit().

    • Executor Service can be used to execut...

  • Answered by AI
  • Q2. Core Java and Spring boot questions
Round 3 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. Core Java questions

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was medium level.

Round 2 - Technical 

(2 Questions)

  • Q1. Array - Pair Sum - Return pair of the sum from arrays
  • Ans. 

    Find pairs in array that sum up to a given target value.

    • Iterate through the array and store each element in a hash set.

    • For each element, check if the target value minus the current element exists in the hash set.

    • Return the pair of elements that sum up to the target value.

  • Answered by AI
  • Q2. Check if two strings are anagram of each other
  • Ans. 

    Check if two strings are anagram of each other

    • Create character count arrays for both strings

    • Compare the character count arrays to check if they are equal

    • Example: 'listen' and 'silent' are anagrams

  • Answered by AI

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

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 achieve the above task using the least numb... read more
View answer (5)
Contribute & help others!
anonymous
You can choose to be anonymous

Freecharge Interview FAQs

How many rounds are there in Freecharge interview?
Freecharge interview process usually has 2-3 rounds. The most common rounds in the Freecharge interview process are Technical, HR and One-on-one Round.
How to prepare for Freecharge 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 Java, SQL, Javascript, Multithreading and Sales.
What are the top questions asked in Freecharge interview?

Some of the top questions asked at the Freecharge interview -

  1. Design a pament device and what other features will you add to i...read more
  2. How can you design a high scale Multithreaded syst...read more
  3. How will you handle communication between cross functional te...read more
How long is the Freecharge interview process?

The duration of Freecharge interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Freecharge

No Interviews

REVIEWS

HDFC Bank

No Reviews

JOBS

Finhaat Insurance Broking

No Jobs

SALARIES

HDFC Bank

SALARIES

HDFC Bank

SALARIES

HDFC Bank

LIST OF COMPANIES

Reliance Trends

Locations

REVIEWS

HDFC Bank

No Reviews

SALARIES

HDFC Bank

SALARIES

HDFC Bank

Tell us how to improve this page.

Freecharge Interview Process

based on 55 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 749 Interviews
PhonePe Interview Questions
4.0
 • 298 Interviews
HighRadius Interview Questions
2.9
 • 182 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Mobikwik Interview Questions
4.0
 • 47 Interviews
Google Pay Interview Questions
4.2
 • 34 Interviews
Amazon Pay Interview Questions
4.0
 • 13 Interviews
Ola Money Interview Questions
3.1
 • 1 Interview
Jio Money Interview Questions
4.2
 • 1 Interview
View all

Freecharge Reviews and Ratings

based on 301 reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.4

Salary

3.8

Job security

3.8

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 301 Reviews and Ratings
Lead Automation Engineer || 6+ Years || Gurgaon (Hybrid)

Gurgaon / Gurugram,

Delhi/Ncr

6-8 Yrs

Not Disclosed

Principal Engineer Backend (Java)

Noida,

Gurgaon / Gurugram

+1

8-12 Yrs

Not Disclosed

Field Sales Officer

Dehradun

1-6 Yrs

Not Disclosed

Explore more jobs
Software Development Engineer
123 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
77 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Product Manager
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Freecharge with

Paytm

3.3
Compare

Mobikwik

3.7
Compare

PhonePe

4.0
Compare

Google Pay

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