Upload Button Icon Add office photos

Freshworks

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Freshworks Graduate Trainee Interview Questions, Process, and Tips

Updated 6 Mar 2025

Top Freshworks Graduate Trainee Interview Questions and Answers

  • Q1. Invert a Binary Tree You are provided with a Binary Tree and one of its leaf nodes. Your task is to invert this binary tree, making sure to adhere to the following guide ...read more
  • Q2. Merge Two Sorted Arrays Problem Statement Given two sorted integer arrays ARR1 and ARR2 of size M and N , respectively, merge them into ARR1 as one sorted array. Assume ...read more
  • Q3. Deepest Left Leaf Node Problem Statement You are provided with a binary tree consisting of 'N' nodes. Your goal is to identify the deepest leaf node that is a left child ...read more
View all 6 questions

Freshworks Graduate Trainee Interview Experiences

5 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - Coding Test 

Hackerrank test - leetcode type questions - easy to medium

Round 2 - Assignment 

Assignment - to submit in Github

Round 3 - Technical 

(1 Question)

  • Q1. Technical q - coding, SQL
Round 4 - Technical 

(1 Question)

  • Q1. Technical q - coding ( to optimise and also the time and space complexity for the same)
Round 5 - HR 

(1 Question)

  • Q1. General HR questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

First round is coding round

Round 2 - Technical 

(1 Question)

  • Q1. This round include basic understanding of oops, dbms, and leetcode coding problems.

Graduate Trainee Interview Questions Asked at Other Companies

asked in Flipkart
Q1. Given an array, how do you get the count of pairs that sum to eve ... read more
asked in Freshworks
Q2. Invert a Binary Tree You are provided with a Binary Tree and one ... read more
asked in Freshworks
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Freshworks
Q4. Deepest Left Leaf Node Problem Statement You are provided with a ... read more
asked in TCS
Q5. Consonant Counting Problem Statement Given a string STR comprisin ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Strings related question

Interview Preparation Tips

Topics to prepare for Freshworks Graduate Trainee interview:
  • strings
  • Debugging
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Coding test of easy level questions. 3-4 questions was there.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Give intro. 2.some DSA questions and i answered all. 3.some oops and Basic questions of CsE

Freshworks interview questions for designations

 Graduate Engineer Trainee (Get)

 (1)

 fresher Graduate

 (1)

 Trainee

 (1)

 Assistant Store Manager Trainee

 (1)

 Product Specialist

 (7)

 Onboarding Specialist

 (7)

 fresher

 (4)

 Customer Success Manager

 (3)

I was interviewed before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Merge Two Sorted Arrays Problem Statement

    Given two sorted integer arrays ARR1 and ARR2 of size M and N, respectively, merge them into ARR1 as one sorted array. Assume that ARR1 has a size of M + N to hol...

  • Ans. 

    Merge two sorted arrays into one sorted array in place.

    • Iterate from the end of both arrays and compare elements to merge in place

    • Use two pointers to keep track of the current position in each array

    • Update the elements in ARR1 from the end to the beginning

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string consisting of parentheses is balanced or not.

    • Iterate through each character in the string and use a stack to keep track of opening parentheses

    • If an opening parenthesis is encountered, push it onto the stack

    • If a closing parenthesis is encountered, check if it matches the top of the stack. If it does, pop the stack, else return 'Not Balanced'

    • At the end, if the stack is empty, re

  • Answered by AI
  • Q3. 

    Reverse Integer Problem Statement

    Given a 32-bit signed integer N, your task is to return the reversed integer. If reversing the integer causes overflow, return -1.

    Input:

    The first line contains an int...
  • Ans. 

    Reverse a 32-bit signed integer and handle overflow cases.

    • Implement a function to reverse the given integer.

    • Check for overflow conditions and return -1 if overflow occurs.

    • Use 32-bit capacity data types only.

    • Example: For input 123, output should be 321.

  • Answered by AI
Round 2 - Assignment 

Round duration - 60 minutes
Round difficulty - Easy

Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. 

    Deepest Left Leaf Node Problem Statement

    You are provided with a binary tree consisting of 'N' nodes. Your goal is to identify the deepest leaf node that is a left child of some node within the given bina...

  • Ans. 

    Identify the deepest left leaf node in a binary tree.

    • Traverse the binary tree in level order to find the deepest left leaf node.

    • Keep track of the maximum depth and the value of the deepest left leaf node found so far.

    • Return the value of the deepest left leaf node at the end.

  • Answered by AI
  • Q2. 

    Sub Sort Problem Statement

    You are given an integer array ARR. Determine the length of the shortest contiguous subarray which, when sorted in ascending order, results in the entire array being sorted in a...

  • Ans. 

    Find the length of the shortest subarray that needs to be sorted to make the entire array sorted in ascending order.

    • Iterate from left to right to find the first element out of order.

    • Iterate from right to left to find the last element out of order.

    • Calculate the length of the subarray between the out of order elements.

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. 

    Invert a Binary Tree

    You are provided with a Binary Tree and one of its leaf nodes. Your task is to invert this binary tree, making sure to adhere to the following guidelines:

    • The given leaf node beco...
  • Ans. 

    Invert a binary tree with a given leaf node as the new root, following specific guidelines.

    • Start by identifying the leaf node provided in the input.

    • Follow the guidelines to invert the binary tree with the leaf node as the new root.

    • Ensure that the left child becomes the right child of the new root if available, and the parent becomes the left child.

    • Implement the inversion process for each test case and output the result

  • Answered by AI
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This Round the HR checks whether you will be good fit for culture code that's followed by the company.

Interview Preparation Tips

Professional and academic backgroundI completed Electrical Engineering from Sri Krishna College of Engineering and Technology. I applied for the job as Graduate Trainee in ChennaiEligibility criteriaAbove 7 CGPAFreshworks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, SQL, OOPS, Basics of system design.Time required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : Make sure that you have good understand of data structures, Algorithm and OOPS
Tip 2 : Practice as many problems as you can in any platform that you are comfortable on.
Tip 3 : Have a decent knowledge on SQL, DBMS, OS, computer networks

Application resume tips for other job seekers

Tip 1 : Keep your resume short preferably 1 page and make sure its communicating all points 
Tip 2 : Add only those thing that you are confident on.

Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top Freshworks Interview Questions

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy interview

I applied via Campus Placement and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Design cycle, digital, resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Study your btech /mtech subjects

I applied via Campus Placement and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Who is the current CEO of TCS?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.

Graduate Trainee Interview Questions & Answers

Infosys user image Nikita Srivastava

posted on 15 Nov 2015

Interview Questionnaire 

6 Questions

  • Q1. How does an aeroplane flies?what is the mechanism etc
  • Ans. 

    An airplane flies by generating lift through its wings and using engines to propel it forward.

    • Airplane wings are designed to create lift by creating a difference in air pressure above and below the wing.

    • The engines provide the necessary thrust to move the airplane forward and maintain its speed.

    • The pilot controls the airplane's altitude and direction by adjusting the angle of the wings and the amount of thrust from the...

  • Answered by AI
  • Q2. Tell me something about urself that is not in ur resume
  • Ans. 

    I am an avid traveler and have visited over 20 countries.

    • I love experiencing new cultures and trying new foods.

    • I have backpacked through Europe and Asia.

    • I have volunteered at a school in rural Thailand.

    • I enjoy documenting my travels through photography and blogging.

  • Answered by AI
  • Q3. Best moment in college till date
  • Ans. 

    Winning the inter-college debate competition

    • Prepared for weeks with my team

    • Overcame nerves and delivered a strong performance

    • Received positive feedback from judges and audience

    • Felt proud of myself and my team for our hard work paying off

  • Answered by AI
  • Q4. Why did u drop a year in case u do
  • Q5. Lot of questions on project
  • Q6. Finally any questions for me?
  • Ans. 

    Yes, I have a few questions regarding the company culture and opportunities for growth.

    • Can you tell me more about the company's values and how they are reflected in the workplace?

    • What kind of training and development programs are available for employees?

    • Are there any opportunities for cross-functional collaboration?

    • How does the company support work-life balance for its employees?

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: the most difficult part of such tests are time management.we need to properly divide our time.however,if the basics are clear and especially verbal section is good,its easy to crack.
Tips: emphasize on verbal,however one should take care of cut off in various sections...
Duration: 45 minutes
Total Questions: 45

Round: HR Interview
Experience: see,if u hav a consistent good score in ur semester,they hardly ask any technical questions,instead they talk about various other fields like projects ,co curriculum etc.
Tips: be calm,be honest,smart ,confident and must emphasize on communication skills.it is very very important.

General Tips: work on communication skills,clear ur basics and start your preparation atleast 6 months before the campus ing day.
Skill Tips: be smart.clear ur basics.work on ur communication skills..
Skills: Attitude, , Confidence, , 1)communication,
College Name: st.thomas college of engineering and technology
Motivation: infosys is my dream company.

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: Anybody with a C.G.P.A of greater than 8.5 would get selected.

Round: HR Interview
Experience: The first question the interviewer asks is "Tell me about yourself" . He also asks about your family. Then he focuses mostly on your projects and will test if you have got any industrial exposure.
Tips: There is no separate round for interview. Both HR and technical combined. The interviewer doesn't ask many questions and after the completion of interview you feel like it lasted for not more than 10 minutes. So you have to be very talkative in the interview and whenever you have the opportunity, pitch about your organisational and management skills. Convince them you can effectively manage people.

General Tips: grab the oppertunity to pitch about your organisational and management skills as there are require for qualifying but wont be asked in the interview.
Skill Tips: Industrial Exposure,
Active participation in projexts,
organisational ad people manageent skills
Duration: 2
College Name: IIT Madras
Motivation: Wipro is the fastest growing FMCG companies and is expanding very fast. I feel like I could contribute more to a well progressing establishment rather than an already well established company.
Funny Moments: the interviewers are very peaceful and you can speak to them very freely.
Contribute & help others!
anonymous
You can choose to be anonymous

Freshworks Interview FAQs

How many rounds are there in Freshworks Graduate Trainee interview?
Freshworks interview process usually has 2-3 rounds. The most common rounds in the Freshworks interview process are Technical, Coding Test and Assignment.
How to prepare for Freshworks Graduate Trainee 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 Freshworks. The most common topics and skills that interviewers at Freshworks expect are Sales, B2B, Inside Sales, Internship and Sales Process.
What are the top questions asked in Freshworks Graduate Trainee interview?

Some of the top questions asked at the Freshworks Graduate Trainee interview -

  1. Technical q - coding ( to optimise and also the time and space complexity for t...read more
  2. 1. Give intro. 2.some DSA questions and i answered all. 3.some oops and Basic q...read more
  3. This round include basic understanding of oops, dbms, and leetcode coding probl...read more

Recently Viewed

SALARIES

Daimler India Commercial Vehicles

INTERVIEWS

ToneTag

No Interviews

INTERVIEWS

HARMAN

No Interviews

INTERVIEWS

Infosys

No Interviews

DESIGNATION

INTERVIEWS

Cognizant

No Interviews

DESIGNATION

DESIGNATION

DESIGNATION

DESIGNATION

Tell us how to improve this page.

Freshworks Graduate Trainee Interview Process

based on 4 interviews

1 Interview rounds

  • Coding Test Round
View more
Freshworks Graduate Trainee Salary
based on 14 salaries
₹4.5 L/yr - ₹7.5 L/yr
67% more than the average Graduate Trainee Salary in India
View more details

Freshworks Graduate Trainee Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

3.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
290 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

fresher
263 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
183 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
178 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Specialist
113 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Freshworks with

Zoho

4.3
Compare

Salesforce

4.0
Compare

LTIMindtree

3.8
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent