Upload Button Icon Add office photos

Filter interviews by

Freshworks Graduate Trainee Interview Questions, Process, and Tips

Updated 17 Jul 2024

Top Freshworks Graduate Trainee Interview Questions and Answers

  • Q1. Valid Parentheses You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced. Input Format: The first ...read more
  • Q2. Invert a Binary Tree You are provided with a Binary Tree and one of its leaf nodes. You have to invert this binary tree. Inversion must be done by following all the below ...read more
  • Q3. Merge Two Sorted Arrays Ninja has been given two sorted integer arrays/lists ‘ARR1’ and ‘ARR2’ of size ‘M’ and ‘N’. Ninja has to merge these sorted arrays/lists into ‘ARR ...read more
View all 8 questions

Freshworks Graduate Trainee Interview Experiences

4 interviews found

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.
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

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 TCS
Q2. Count Consonants In A StringGiven a string ‘STR’ which consists o ... read more
asked in Freshworks
Q3. Valid ParenthesesYou're given string ‘STR’ consisting solely of “ ... read more
asked in Freshworks
Q4. Invert a Binary TreeYou are provided with a Binary Tree and one o ... read more
asked in Freshworks
Q5. Merge Two Sorted ArraysNinja has been given two sorted integer ar ... read more
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

Graduate Trainee Interview Questions & Answers

user image CodingNinjas

posted on 31 May 2022

I was interviewed before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. Merge Two Sorted Arrays

    Ninja has been given two sorted integer arrays/lists ‘ARR1’ and ‘ARR2’ of size ‘M’ and ‘N’. Ninja has to merge these sorted arrays/lists into ‘ARR1’ as one sorted array. You may hav...

  • Ans. 

    I have used the merge logic that is used in merge sort algorithm.

  • Answered by CodingNinjas
  • Q2. Valid Parentheses

    You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced.

    Input Format:
    The first line contains an Integer &...
  • Ans. 

    I had used stack to solve this problem.
    Iterated through the array with two condition
    1. if its open braces than add that in stack
    2. if its closed then validate that peek element in stack
    3. if step 2 is false then break the loop and return false. 
    4. After the iteration if stack is empty then return true else return false

  • Answered by CodingNinjas
  • Q3. Reverse Integer

    You are given a 32-bit signed integer ‘N’. So, the integer will lie in the range [-2^31, 2^31 - 1]. Your task is to return the reverse of the given integer. If reversing causes overflow, th...

  • Ans. 

    Since its online I tried converting the integer to string and reversed that and it passed all the cases. For logical approach refer this article 

  • Answered by CodingNinjas
Round 2 - Assignment 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Backend Assignment

    Build a file-based key-value data store that supports the basic CRD (create, read, and delete)operations. This data store is meant to be used as local storage for one single process on on...

  • Ans. 

    Tip 1 : store the key value pair in specific format in file, so that while doing CRUD we can able to differentiate the pair stored in file
     

  • Answered by CodingNinjas
Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. Deepest Left

    You are given a binary tree having ‘N’ number of nodes. Your task is to find the deepest leaf node in the given input tree.

    Note:

    The deepest leaf node is the leaf node which will be the l...
  • Ans. 

    Firstly I have two approaches in my mind one is through the recursion and other through BFS. 
    Since its straight forward problem I decided to solve this with BFS.

    I have used BFS traversal logic and had track of leftmost node in each level once the traversal is completed then leftmostnode contains the result.

    1. To do level order traversal in BFS we need to add a null in the queue once after adding the last element i...

  • Answered by CodingNinjas
  • Q2. Sub Sort

    You are given an integer array ‘ARR’. You have to find the length of the shortest contiguous subarray such that, if you sort this subarray in ascending order, then the whole array will be sorted i...

  • Ans. 

    I couldn’t thing the brute approach for the problem during my interview, but some how managed to get an idea of optimal solution.

    The approach that I used was:

    1. Have two variable which point start index and end index of array.
    2. Now find the first element from start of the array which is less that the previous element. store this index in variable let's say 'startIndex'
    3. Now find the first element from end of the arra...

  • Answered by CodingNinjas
Round 4 - Face to Face 

(3 Questions)

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. You have to invert this binary tree. Inversion must be done by following all the below guidelines:

    • The given leaf node...
  • Ans. 

    I explained the approach of swaping the child two nodes while traversing each node. The interview was fine with that approach

  • Answered by CodingNinjas
  • Q2. Minimum cut puzzle

    You have got someone working for you for five days and a gold bar to pay him. You must give them a piece of gold at the end of every day. What are the fewest number of cuts to the bar of ...

  • Ans. 

    Tip 1 : I used have a habit of learning puzzle when I get bored solving problems during my interview preparation. Luckily that habit helped me here.
     

  • Answered by CodingNinjas
  • Q3. SQL Questions

    I was Asked to code some basic SQL queries. All them were really simple if you know the basics of SQL.

  • Ans. 

    Tip 1 : Do practice for SQL queries in hacker rank when you find that helps a lot. 
     

  • Answered by CodingNinjas
Round 5 - HR 

(1 Question)

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.

  • Q1. Basic HR Questions

    Tell me about yourself.

    How will you learn new coding language if asked to work on that?

    Why do you want to join this company?


     

  • Ans. 

    Tip 1 : Try to answer the question by comparing some past situation that you had faced. 
     

  • Answered by CodingNinjas

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

Freshworks interview questions for designations

 Graduate Engineer Trainee (Get)

 (1)

 fresher Graduate

 (1)

 Trainee

 (1)

 Assistant Store Manager Trainee

 (1)

 Onboarding Specialist

 (7)

 Product Specialist

 (6)

 fresher

 (4)

 Customer Success Manager

 (3)

Interview questions from similar companies

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

I applied via campus placement at Graphic Era University, Dehradun and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - MCQ 

(2 Questions)

  • Q1. TOTALLY BASED ON NETWORKING CONCEPT
  • Q2. FULLY NETWORKING QUESTIONS
Round 2 - Technical 

(2 Questions)

  • Q1. Computer networking
  • Q2. Computer networking CN
Round 3 - Technical 

(2 Questions)

  • Q1. CN CN CN CN
  • Q2. CN CN COMPUTER NET
Round 4 - Technical 

(2 Questions)

  • Q1. CN COMPUTER NETWORKING COMPUTER NETWORKING
  • Q2. Computer networking computer networking
Round 5 - HR 

(2 Questions)

  • Q1. Who is your role model?
  • Ans. 

    My role model is my mother, who has always been a source of inspiration and strength for me.

    • My mother has shown incredible resilience and determination in overcoming challenges.

    • She has always prioritized the well-being of our family and has taught me the importance of hard work and perseverance.

    • I admire her ability to balance work, family, and personal interests effectively.

    • Her kindness, generosity, and positive attitu...

  • Answered by AI
  • Q2. Tell me about your projects that are mentioned in your resume?
  • Ans. 

    I have worked on various projects including a marketing campaign analysis, a website redesign, and a customer satisfaction survey.

    • Marketing campaign analysis involved analyzing data to determine the effectiveness of different marketing strategies.

    • Website redesign project focused on improving user experience and increasing website traffic.

    • Customer satisfaction survey project involved designing and conducting surveys to

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zscaler Softech Graduate Trainee interview:
  • Computer Networking
Interview preparation tips for other job seekers - Focus on networking
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via campus placement at St Josephs College of Engineering, Chennai and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

It was well organised. Friendly staffs and responding.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions from resume
  • Q2. Questions from business related things

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good grasp on your basics and prepare your resume well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Graphic Era University, Dehradun and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - MCQ 

(2 Questions)

  • Q1. TOTALLY BASED ON NETWORKING CONCEPT
  • Q2. FULLY NETWORKING QUESTIONS
Round 2 - Technical 

(2 Questions)

  • Q1. Computer networking
  • Q2. Computer networking CN
Round 3 - Technical 

(2 Questions)

  • Q1. CN CN CN CN
  • Q2. CN CN COMPUTER NET
Round 4 - Technical 

(2 Questions)

  • Q1. CN COMPUTER NETWORKING COMPUTER NETWORKING
  • Q2. Computer networking computer networking
Round 5 - HR 

(2 Questions)

  • Q1. Who is your role model?
  • Ans. 

    My role model is my mother, who has always been a source of inspiration and strength for me.

    • My mother has shown incredible resilience and determination in overcoming challenges.

    • She has always prioritized the well-being of our family and has taught me the importance of hard work and perseverance.

    • I admire her ability to balance work, family, and personal interests effectively.

    • Her kindness, generosity, and positive attitu...

  • Answered by AI
  • Q2. Tell me about your projects that are mentioned in your resume?
  • Ans. 

    I have worked on various projects including a marketing campaign analysis, a website redesign, and a customer satisfaction survey.

    • Marketing campaign analysis involved analyzing data to determine the effectiveness of different marketing strategies.

    • Website redesign project focused on improving user experience and increasing website traffic.

    • Customer satisfaction survey project involved designing and conducting surveys to

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zscaler Softech Graduate Trainee interview:
  • Computer Networking
Interview preparation tips for other job seekers - Focus on networking
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Ai will take over the human race or not.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on c language pointers, structures etc
  • Q2. About businesses how it works etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on the fundmentals.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Technical and aptitude questions

Round 2 - Group Discussion 

Talk for 2 mins about the topic

Round 3 - Technical 

(2 Questions)

  • Q1. One to one round
  • Q2. Osi model, all networking and some os related basic to medium level questions
Round 4 - One-on-one 

(2 Questions)

  • Q1. Based on cv projects and networking
  • Q2. Network interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare networking
Do projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via campus placement at St Josephs College of Engineering, Chennai and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

It was well organised. Friendly staffs and responding.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions from resume
  • Q2. Questions from business related things

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good grasp on your basics and prepare your resume well

Freshworks Interview FAQs

How many rounds are there in Freshworks Graduate Trainee interview?
Freshworks interview process usually has 1-2 rounds. The most common rounds in the Freshworks interview process are Technical and Coding Test.
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. 1. Give intro. 2.some DSA questions and i answered all. 3.some oops and Basic q...read more
  2. This round include basic understanding of oops, dbms, and leetcode coding probl...read more
  3. Strings related quest...read more

Tell us how to improve this page.

Freshworks Graduate Trainee Interview Process

based on 3 interviews in last 1 year

Interview experience

4.3
  
Good

People are getting interviews through

based on 2 Freshworks interviews
Company Website
Referral
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Freshworks Graduate Trainee Salary
based on 20 salaries
₹4.5 L/yr - ₹7.5 L/yr
60% 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 & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

3.0

Work Satisfaction

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

₹10.6 L/yr - ₹36 L/yr

fresher
250 salaries
unlock blur

₹1 L/yr - ₹5.4 L/yr

Software Engineer
179 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Lead Software Engineer
178 salaries
unlock blur

₹17.2 L/yr - ₹50 L/yr

Product Specialist
104 salaries
unlock blur

₹5 L/yr - ₹10.4 L/yr

Explore more salaries
Compare Freshworks with

Zoho

4.3
Compare

Salesforce

4.1
Compare

LTIMindtree

3.8
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview