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

Updated 14 May 2024

Freecharge Java Developer Interview Experiences

2 interviews found

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

I appeared for an interview in Apr 2024.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Merge Two Sorted Linked List. 2. String Pool, String Builder, String Buffer 3. Shallow Copy, Deep Copy. 4. Fail-Fast, Fail safe Iterator 5. Java 8 features you know 6. Stream related question 7. Basic J...
Round 2 - Technical 

(1 Question)

  • Q1. 1. Multithreading Concepts (Threads, Process, Thread Pool, etc) 2. coding questions -> T1 = Free and T2 = Charge: Print Free Charge using multithreading concept. 3. Basic Questions of Spring Boot(@RestCont...
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2023. There were 3 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 - Aptitude Test 

Aptitude test based on English grammar

Round 3 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Basic questions in core Java

Interview Preparation Tips

Topics to prepare for Freecharge Java Developer interview:
  • Java
  • Core Java
  • Java developer
Interview preparation tips for other job seekers - I am an fresher

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk(). Parent run() calls walk(). Chi ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
Q4. How do you sort a list of students based on their first name?
asked in Cognizant
Q5. What array list and linkedlist difference,how hashmap internally ... read more

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Nice environment

  • Q1. 

    Zigzag Traversal of Binary Tree

    Given a binary tree with integer values in its nodes, your task is to print the zigzag traversal of the tree.

    Note:

    In zigzag order, level 1 is printed from left to right...
  • Ans. 

    Implement a function to print the zigzag traversal of a binary tree.

    • Traverse the tree level by level, alternating the direction of traversal for each level.

    • Use a queue to keep track of nodes at each level.

    • Print the nodes in zigzag order as per the given pattern.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Nice Environment

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. What was the use of DBMS in your project, and how did you handle the problems that arose?
  • Ans. 

    DBMS was used to store and manage data in the project, handled problems by optimizing queries and database design.

    • Used DBMS to store and manage project data efficiently

    • Optimized queries for better performance

    • Designed database schema to handle data effectively

    • Resolved concurrency issues by implementing proper locking mechanisms

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPayU interview preparation:Topics to prepare for the interview - Array ,DP ,Graph ,Recursion, Tree ,Queue,BSTTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 good projects
Tip 2 : Practice Atleast 300 Questions
Tip 3 : Should be able to explain your project

Application resume tips for other job seekers

Tip 1 : Always be true with the resume
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 mins
Round difficulty - Hard

There were questions related to DP and DFS.

 

  • Q1. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    Calculate the total amount of rainwater that can be trapped between given elevations in an array.

    • Iterate through the array and calculate the maximum height on the left and right of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.

    • Sum up the trapped water at each bar to get the total trapped water for the entire array.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 mins
Round difficulty - Medium

At first, I was asked about the different projects that I have done so far. We had a detailed discussion on the same.
He also checked my OOP concepts

  • Q1. Can you describe the process of designing an LRU Cache from scratch during your System Design Round?
  • Ans. 

    Designing an LRU Cache involves implementing a data structure that stores a fixed number of items and removes the least recently used item when full.

    • Start by defining the data structure for the cache, typically using a combination of a hashmap and a doubly linked list.

    • Implement methods for getting and setting key-value pairs in the cache.

    • When a new item is added to the cache, check if it exceeds the maximum capacity. I...

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Ans. 

    Reverse a singly linked list by altering the links between nodes.

    • Iterate through the linked list and reverse the links between nodes

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the links between nodes to reverse the list

    • Return the head of the reversed linked list

  • Answered by AI
  • Q3. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • If there are even elements, return the one that is farther from the head node

    • Handle edge cases like linked list of size 1 or empty list

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 mins
Round difficulty - Medium

It is HR + Technical round
asked about the Behavioural questions and how you justify yourself in an argument .questions related to current technology.
They gave me feedback on how well I had performed so far and gave me suggestions on what more can I do to further improve myself.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaGood ProjectsRazorpay interview preparation:Topics to prepare for the interview - Projects, Development, NoSQL, Data Structure, OOPS, DBMS, Algorithm.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be thorough about your projects
Tip 2 : Prepare Ds and Algo and Practice all standard questions 
Tip 3 : Know the complexities of the code that you’ve written.

Application resume tips for other job seekers

Tip 1 : Mention at least 2 projects.
Tip 2 : Don't make any silly spelling mistakes on resume

Final outcome of the interviewSelected

Skills evaluated in this interview

What people are saying about Freecharge

View All
dinasaur
Verified Icon
1w
works at
DP World
Which company will i choose between united airlines vs freecharge ??
I have got the offers of 23 Lpa fixed + 2 lac variable from united airlines for senior sdet and 25 lpa fixed from freecharge by axis bank for lead sdetrole
Got a question about Freecharge?
Ask anonymously on communities.

Interview Preparation Tips

Round: Technical Interview
Experience: Finally, I got the offer from PayU. I was very Happy. Thanks AmbitionBox for helping me in my preparation

Skills: Algorithm, data structures
College Name: Na
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Name gaurav Chauhan
  • Ans. My name is Gaurav Chauhan
  • Answered by burningeggplant
  • Q2. Paytm company 5 month working
  • Q3. My house is transport Nagar Alwar
  • Q4. Freecharge payment
  • Ans. Freecharge company me mana working ke h
  • Answered by burningeggplant
  • Q5. I am good workinig
  • Ans. 

    I am dedicated to my work, consistently striving for excellence and fostering a collaborative team environment.

    • I prioritize tasks effectively, ensuring deadlines are met without compromising quality. For example, I led a project that improved efficiency by 20%.

    • I encourage open communication within the team, which helps in resolving issues quickly and promotes a positive work culture.

    • I actively seek feedback from team m...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Bharat pe is good company and good service

Freecharge HR Interview Questions

6 questions and answers

Q. Tell me about yourself and your family.
Q. Why have you chosen this role and company?
Q. Describe your risk framework and how you would manage it in a Fintech compa ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Project discussion
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the role of RJ45 in networking?
  • Ans. 

    RJ45 is a type of connector commonly used for Ethernet networking.

    • RJ45 connectors are used to connect computers, routers, switches, and other network devices to create a local area network (LAN).

    • They are designed to transmit data using twisted pair cables.

    • RJ45 connectors have 8 pins and are commonly used in Ethernet networks for both wired and wireless connections.

  • Answered by AI
  • Q2. What is the typical power consumption for domestic electrical lines?
  • Ans. 

    The typical power consumption for domestic electrical lines varies depending on the size of the house and appliances used.

    • Power consumption can range from 500 to 2000 watts per hour for an average household.

    • Larger homes with more appliances may consume more power.

    • Energy-efficient appliances can help reduce power consumption.

    • Seasonal variations and usage patterns also impact power consumption.

    • Electricity bills typically...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your experience regarding job roles and tenure?
  • Q2. What is your availability for phone calls?
  • Ans. 

    I am available for phone calls during regular business hours and can make myself available for urgent matters outside of those hours if needed.

    • Available for phone calls during regular business hours

    • Can make myself available for urgent matters outside of regular hours if needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the subjects related to your job role.
Round 1 - One-on-one 

(3 Questions)

  • Q1. Onbording experience
  • Q2. UPI knowledge and experience
  • Q3. Field work knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Smart working hard working
Field work knowledge
Experience
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Tell about yourself
  • Q2. Past experience
  • Ans. 

    I have over 8 years of experience in project management, leading teams to deliver successful outcomes in various industries.

    • Led a team of 10 in a software development project that increased efficiency by 30%.

    • Implemented Agile methodologies, resulting in a 25% reduction in project delivery time.

    • Managed cross-functional teams in a healthcare project, improving patient data management systems.

    • Conducted regular training se...

  • Answered by AI
  • Q3. Last ctc salary
  • Ans. 

    Discussing last CTC salary helps gauge expectations and market alignment for the Team Lead role.

    • CTC stands for Cost to Company, which includes all benefits and allowances.

    • For example, if my last CTC was $80,000, it included base salary, bonuses, and health benefits.

    • It's important to consider the entire compensation package, not just the base salary.

    • I believe in transparency regarding salary discussions to ensure mutual...

  • Answered by AI

Freecharge Interview FAQs

How many rounds are there in Freecharge Java Developer interview?
Freecharge interview process usually has 2-3 rounds. The most common rounds in the Freecharge interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Freecharge Java 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 Java, NoSQL, Data Structures and Algorithms, Java Spring Boot and Multithreading.
What are the top questions asked in Freecharge Java Developer interview?

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

  1. 1. Multithreading Concepts (Threads, Process, Thread Pool, etc) 2. coding quest...read more
  2. 1. Merge Two Sorted Linked List. 2. String Pool, String Builder, String Buffer ...read more
  3. Basic questions in core J...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Difficulty level

Moderate 50%
Hard 50%

Duration

Less than 2 weeks 100%
View more
Software Development Engineer
130 salaries
unlock blur

₹6.2 L/yr - ₹12.9 L/yr

Senior Software Engineer
98 salaries
unlock blur

₹14.3 L/yr - ₹24.5 L/yr

Lead Software Engineer
91 salaries
unlock blur

₹20 L/yr - ₹36 L/yr

Software Developer
69 salaries
unlock blur

₹6.2 L/yr - ₹12.4 L/yr

Associate Product Manager
63 salaries
unlock blur

₹15.9 L/yr - ₹22.6 L/yr

Explore more salaries
Compare Freecharge with

Paytm

3.2
Compare

Mobikwik

3.5
Compare

AGS Transact Technologies

2.9
Compare

Hitachi Payment Services

3.6
Compare
write
Share an Interview