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 Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 11 May 2024

Freecharge Graduate Engineer Trainee (Get) Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About javascript and react . js theory questions
  • Q2. Some codes like sorting , react state , css properties
Round 2 - Technical 

(1 Question)

  • Q1. Output based javascript questions

I applied via Campus Placement and was interviewed in Sep 2022. 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 

The first round consists of Aptitude with some DBMS and cloud questions also there are 2 coding questions also there.

Round 3 - Technical 

(3 Questions)

  • Q1. The interview was smooth and easy I am able to solve both questions based on arrays but not shortlisted. Thanks to the interviewer he is eating at the time of the interview and didn't look interested in ta...
  • Q2. 1. stock price with max profit.
  • Ans. 

    Finding the stock price with maximum profit.

    • Calculate the difference between each day's stock price and the minimum stock price seen so far.

    • Find the maximum difference calculated in the previous step.

    • The maximum difference is the maximum profit that can be made.

    • Add the maximum difference to the minimum stock price to get the stock price with maximum profit.

  • Answered by AI
  • Q3. 2.all zeroes at the end of the array.
  • Ans. 

    To count the number of zeroes at the end of an array.

    • Loop through the array from the end and count the number of zeroes until a non-zero element is encountered.

    • Use a while loop to keep dividing the last element by 10 until it is not divisible by 10 to count the number of zeroes.

    • If the array is sorted in non-increasing order, use binary search to find the last non-zero element and subtract its index from the length of t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA. Also, focus on computer fundamentals for the first round.

Skills evaluated in this interview

Graduate Engineer Trainee (Get) Interview Questions Asked at Other Companies

asked in JBM Group
Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Diffe ... read more
Q2. How would you check the continuity of a wire inside a wall if the ... read more
Q3. What will be the cost of painting the wall behind me?
Q4. What happens when there is a large air void in concrete?
Q5. What are the different types of concrete?

I applied via Campus Placement and was interviewed in Sep 2022. There were 5 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 

My first round consists of Aptitude with some technical question and 2 coding questions(one of Dynamic programming).

Round 3 - Technical 

(1 Question)

  • Q1. The first round was easy I was able to answer the questions and also the interviewer was supportive. 3 coding question and one DBMS query was there and then OOPs DBMS and DSA.
Round 4 - Technical 

(1 Question)

  • Q1. This round was little tough then the technical round one. they asked me to code on linked list and one on DP. and then asked about Deep DSA and also on resume related questions(asked about my projects etc....
Round 5 - HR 

(1 Question)

  • Q1. This was my final round where they asked about different situations to check if I was the best fit or not

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, Don't panic and keep smile on your face

I applied via Campus Placement and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Linked list Median of 2 sorted array Print left view of tree
  • Ans. 

    The interviewee was asked about linked lists, finding the median of two sorted arrays, and printing the left view of a tree.

    • For linked lists, the interviewee should be familiar with the basic operations such as insertion, deletion, and traversal.

    • To find the median of two sorted arrays, the interviewee should know how to merge the arrays and find the middle element(s).

    • Printing the left view of a tree involves traversing...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not panic. Interviewer is very supportive and knowledgeable.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Freecharge?
Ask anonymously on communities.

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

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

I applied via Campus Placement and was interviewed before Aug 2020. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Java Core (OOP's, Exception Handling, Inner Classes, Concurrency, I/O, Collection Framework)
  • Q2. Spring (Dependency Injection, AOP, Data Support, SPEL, and Webflux) and Spring Boot
  • Q3. JPA and Hibernate
  • Q4. Design Patterns and Data Structures and Algorithms
  • Q5. Maven, Git, and Linux

Interview Preparation Tips

Interview preparation tips for other job seekers - Please come prepared with the topics mentioned in the Questions section
Are these interview questions helpful?

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 Minutes
Round difficulty - Medium

The round consisted of 2 Coding based based questions.
These question were easy for as I have already done this while preparing.

  • Q1. 

    Flip Equivalent Binary Tree Problem

    Determine whether two binary trees, given by their roots 'ROOT1' and 'ROOT2', are flip equivalent. A tree can be transformed into a flip equivalent through any number o...

  • Ans. 

    The problem is to determine if two binary trees are flip equivalent after performing flip operations on one of the trees.

    • Perform a depth-first search (DFS) on both trees simultaneously

    • At each node, check if the values are equal and the left and right subtrees are either both null or both not null

    • If the above conditions are met, recursively check the flip equivalence of the left and right subtrees

    • If any of the condition...

  • Answered by AI
  • Q2. 

    Split Array Into Increasing Subsequences Problem Statement

    You are provided with an integer array ARR of size N sorted in ascending order. Your task is to determine if it is possible to split this array i...

  • Ans. 

    The task is to determine if an integer array can be split into one or more increasing subsequences with a length of at least 3.

    • Check if the array can be split into increasing subsequences by iterating through the array.

    • Keep track of the current subsequence and its length while iterating.

    • If the difference between the current element and the previous element is not 1, start a new subsequence.

    • If the length of any subseque...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

The interview started a bit late as I it to be at 11:30 am but started at 12:15pm So Had to wait. Apart from these the overall experience was great and the interviewer was also kind and had a smiling face.

  • Q1. 

    Ninja and Alternating Largest Problem Statement

    Ninja is given a sequence of numbers and needs to rearrange them so that every second element is greater than its neighbors on both sides.

    Example:

    Input:
    ...
  • Ans. 

    The task is to rearrange the given array such that every second element is greater than its left and right element.

    • Iterate through the array and check if every second element is greater than its left and right element

    • If not, swap the current element with its adjacent element to satisfy the condition

    • Continue this process until the entire array satisfies the condition

    • Return 1 if the array satisfies the condition, else re...

  • Answered by AI
Round 3 - Video Call 

Round duration - 30 Minutes
Round difficulty - Easy

10:30 PM 
Interviewer was Cool.

Round 4 - HR 

Round duration - 5 minutes
Round difficulty - Easy

At 10:00 am

Interview Preparation Tips

Eligibility criteriaNo criteria But only 8+ plus CGPA were eventually shortlisted on basis of resumeAcko interview preparation:Topics to prepare for the interview - DSA, DBMS, Puzzles, OS, System DesignTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Never never try to cheat in online interview the interviewer will definitely get to know.
Tip 2 : Psuedo code presentation matters a lot so name Your variable properly and with proper indentation.
Tip 3 : Keep on trying even if You feel that's not the right answer so at least put that idea forward.
Tip 4 : Do Leetcode medium questions as much as possible As they are mostly asked in Interviews.

Application resume tips for other job seekers

Tip 1 : Avoid unnecessary details on Resume
Tip 2 : Make It look clean and also keep it of one page

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jun 2022. 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 - One-on-one 

(1 Question)

  • Q1. Questions based on DSA
Round 3 - One-on-one 

(1 Question)

  • Q1. Java specific Interview
Round 4 - One-on-one 

(1 Question)

  • Q1. Hiring Manager Interview

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA, Java, System Design
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

Freecharge Interview FAQs

How many rounds are there in Freecharge Graduate Engineer Trainee (Get) interview?
Freecharge interview process usually has 3-4 rounds. The most common rounds in the Freecharge interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in Freecharge Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the Freecharge Graduate Engineer Trainee (Get) interview -

  1. Linked list Median of 2 sorted array Print left view of t...read more
  2. 1. stock price with max prof...read more
  3. 2.all zeroes at the end of the arr...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Interview Questions from Similar Companies

Razorpay Interview Questions
3.5
 • 161 Interviews
TransUnion Interview Questions
3.9
 • 93 Interviews
Rupeek Interview Questions
3.7
 • 66 Interviews
PayU Payments Interview Questions
3.5
 • 57 Interviews
Mobikwik Interview Questions
3.6
 • 56 Interviews
ACKO Interview Questions
3.7
 • 55 Interviews
BankBazaar Interview Questions
3.3
 • 53 Interviews
BharatPe Interview Questions
3.5
 • 43 Interviews
Spice Money Interview Questions
4.1
 • 32 Interviews
View all
Freecharge Graduate Engineer Trainee (Get) Salary
based on 21 salaries
₹6.7 L/yr - ₹9.5 L/yr
122% more than the average Graduate Engineer Trainee (Get) Salary in India
View more details

Freecharge Graduate Engineer Trainee (Get) Reviews and Ratings

based on 3 reviews

2.9/5

Rating in categories

2.9

Skill development

2.9

Work-life balance

2.9

Salary

2.6

Job security

2.9

Company culture

2.6

Promotions

2.9

Work satisfaction

Explore 3 Reviews and Ratings
Software Development Engineer
127 salaries
unlock blur

₹6 L/yr - ₹13 L/yr

Lead Software Engineer
96 salaries
unlock blur

₹22 L/yr - ₹36 L/yr

Senior Software Engineer
77 salaries
unlock blur

₹14.2 L/yr - ₹25 L/yr

Software Developer
68 salaries
unlock blur

₹6.2 L/yr - ₹13 L/yr

Associate Product Manager
63 salaries
unlock blur

₹15.9 L/yr - ₹25 L/yr

Explore more salaries
Compare Freecharge with

Paytm

3.2
Compare

Mobikwik

3.6
Compare

AGS Transact Technologies

2.9
Compare

Hitachi Payment Services

3.7
Compare
write
Share an Interview