Upload Button Icon Add office photos

Freshworks

Compare button icon Compare button icon Compare

Filter interviews by

Freshworks Interview Questions and Answers for Freshers

Updated 30 Jul 2025
Popular Designations

19 Interview questions

An Intern was asked 9mo ago
Q. What are your interests and hobbies?
Ans. 

I enjoy reading, hiking, and painting, which help me relax and express my creativity while staying active and engaged with nature.

  • Reading: I love exploring different genres, especially fiction and biographies, which broaden my perspective.

  • Hiking: I often go on weekend hikes, enjoying the beauty of nature and the physical challenge it provides.

  • Painting: I find painting therapeutic; it allows me to express my emotio...

View all Intern interview questions
A Trainee was asked 11mo ago
Q. Explain the Software Development Life Cycle (SDLC).
Ans. 

Software development life cycle is a process used by software development teams to design, develop, test, and deploy software.

  • It involves planning, designing, coding, testing, and deployment stages.

  • Each stage has specific goals and deliverables.

  • Examples of SDLC models include Waterfall, Agile, and DevOps.

View all Trainee interview questions
An Intern was asked
Q. Can you explain the project?
Ans. 

Developed a web application to streamline project management and enhance team collaboration.

  • Utilized React for the front-end to create a responsive user interface.

  • Implemented Node.js and Express for the back-end to handle API requests.

  • Integrated a MongoDB database for efficient data storage and retrieval.

  • Incorporated user authentication using JWT for secure access.

  • Conducted user testing to gather feedback and impr...

View all Intern interview questions
A Customer Success Specialist was asked
Q. Are you willing to relocate?
Ans. 

Yes, I am ready to relocate for the right opportunity.

  • I am open to relocating for a position that aligns with my career goals and offers growth opportunities.

  • I have relocated in the past for work and am comfortable with the process.

  • I am excited about the possibility of experiencing a new city or country and immersing myself in a different culture.

View all Customer Success Specialist interview questions
A Java Developer was asked
Q. Explain a project you worked on.
Ans. 

Developed a web-based inventory management system for a retail company.

  • Used Java, Spring Framework, and Hibernate for backend development.

  • Implemented a responsive UI using HTML, CSS, and JavaScript.

  • Integrated with third-party APIs for payment processing and shipping.

  • Implemented security measures such as encryption and user authentication.

  • Optimized database queries for faster performance.

  • Collaborated with a team of...

View all Java Developer interview questions
A Graduate Trainee was asked
Q. 

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

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.

View all Graduate Trainee interview questions
Be interview-ready. Browse the most asked HR questions.
illustration image
A Graduate Trainee was asked
Q. 

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

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.

View all Graduate Trainee interview questions
Are these interview questions helpful?
A Graduate Trainee was asked
Q. 

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

View all Graduate Trainee interview questions
A Graduate Trainee was asked
Q. 

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

View all Graduate Trainee interview questions
A Graduate Trainee was asked
Q. 

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

View all Graduate Trainee interview questions

Freshworks Interview Experiences for Freshers

23 interviews found

Interview Questions & Answers

user image Anonymous

posted on 23 Aug 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What I have to do in this job
  • Q2. What's my job in this
  • Q3. What kind of company is this
  • Q4. And what I want to do for this company
Round 2 - Group Discussion 

I can do good group discussion also I have leader ship qualitys

Interview Preparation Tips

Interview preparation tips for other job seekers - Be onest
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. First round they ask all basic to advanced level questions in JavaScript like closure, factory function, scoping, hoisting, object oriented programming.
  • Q2. In the second round, the interviewer requested that I write a Pub/Sub class entirely in JavaScript and implement autocomplete functionality in JavaScript as well.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in JavaScript.

Trainee Interview Questions & Answers

user image Anonymous

posted on 13 Sep 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

One hour aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Software development life cycle
  • Ans. 

    Software development life cycle is a process used by software development teams to design, develop, test, and deploy software.

    • It involves planning, designing, coding, testing, and deployment stages.

    • Each stage has specific goals and deliverables.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

  • Answered by AI
  • Q2. Related to data structures
Round 3 - HR 

(1 Question)

  • Q1. Final HR Round about self introduction

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

HTML ,CSS, JAVASCRIPT

Round 2 - Aptitude Test 

Topics of html css and javascript

Round 3 - HR 

(2 Questions)

  • Q1. My carrer related question
  • Q2. And my profession work related question

Interview Preparation Tips

Topics to prepare for Freshworks Frontend Developer Intern interview:
  • Html ,css ,javascript
Interview preparation tips for other job seekers - This is more helpfull to growth the carrer .and more learning skills to update for me.

Intern Interview Questions & Answers

user image Caprio

posted on 19 Jun 2024

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

Movie Review App that uses a public API to fetch the movie details and present it in the UI.

Round 2 - Coding Test 

Reversing the Linked list

Round 3 - Technical 

(1 Question)

  • Q1. Project explanation
  • Ans. 

    Developed a web application to streamline project management and enhance team collaboration.

    • Utilized React for the front-end to create a responsive user interface.

    • Implemented Node.js and Express for the back-end to handle API requests.

    • Integrated a MongoDB database for efficient data storage and retrieval.

    • Incorporated user authentication using JWT for secure access.

    • Conducted user testing to gather feedback and improve f...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Referral and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Ready to relocate

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay true

fresher Interview Questions & Answers

user image Anonymous

posted on 22 Mar 2023

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

I applied via Naukri.com and was interviewed in Feb 2023. 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 - Aptitude Test 

English maths related questions

Round 3 - Technical 

(1 Question)

  • Q1. Python questions want ask
Round 4 - HR 

(1 Question)

  • Q1. Python questions asked

Interview Preparation Tips

Topics to prepare for Freshworks fresher interview:
  • Python
  • Data Structures
Interview preparation tips for other job seekers - Nothing advice are thare in interview questions asked
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Case Study 

They asked a guesstimate case question. The question was, If you are the manager of McDonalds, where would you place it in the international chennai airport (Arrival or departure).
What will be the yearly revenue McDonalds if all items are priced at Rs.100.

Round 2 - Technical 

(2 Questions)

  • Q1. Advanced Excel Based questions
  • Q2. Basic SQL based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with you excel & SQL skills.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Way of talking,way of behaviour
It's enough
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic DSA leet code.

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Freshworks?
Ask anonymously on communities.

Freshworks Interview FAQs

How many rounds are there in Freshworks interview for freshers?
Freshworks interview process for freshers usually has 2-3 rounds. The most common rounds in the Freshworks interview process for freshers are Aptitude Test, HR and Technical.
How to prepare for Freshworks interview for freshers?
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 Java, Sales, Testing, B2B and Customer Support.
What are the top questions asked in Freshworks interview for freshers?

Some of the top questions asked at the Freshworks interview for freshers -

  1. Explain Software development life cy...read more
  2. Intrest & Hobb...read more
  3. Project expl...read more
What are the most common questions asked in Freshworks HR round for freshers?

The most common HR questions asked in Freshworks interview are for freshers -

  1. Tell me about yourse...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your strengths and weakness...read more
How long is the Freshworks interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 14 interview experiences

Difficulty level

Easy 15%
Moderate 77%
Hard 8%

Duration

Less than 2 weeks 58%
2-4 weeks 8%
4-6 weeks 17%
More than 8 weeks 17%
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.4
 • 206 Interviews
AVASOFT Interview Questions
2.7
 • 177 Interviews
Oracle Cerner Interview Questions
3.6
 • 163 Interviews
Thomson Reuters Interview Questions
4.1
 • 126 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
UKG Interview Questions
3.1
 • 117 Interviews
Amadeus Interview Questions
3.7
 • 116 Interviews
SPRINKLR Interview Questions
2.9
 • 107 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
View all

Freshworks Reviews and Ratings

based on 770 reviews

3.4/5

Rating in categories

3.2

Skill development

3.6

Work-life balance

3.6

Salary

2.9

Job security

3.4

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 770 Reviews and Ratings
Business Development Manager (North America)

Bangalore / Bengaluru

1-4 Yrs

Not Disclosed

Senior Account Manager - EU / UK

Bangalore / Bengaluru

4-6 Yrs

Not Disclosed

Staff Product Designer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
411 salaries
unlock blur

₹20.2 L/yr - ₹34.2 L/yr

fresher
253 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Software Engineer
239 salaries
unlock blur

₹10 L/yr - ₹17 L/yr

Lead Software Engineer
225 salaries
unlock blur

₹31 L/yr - ₹55 L/yr

Product Specialist
157 salaries
unlock blur

₹5.3 L/yr - ₹12.6 L/yr

Explore more salaries
Compare Freshworks with

Zoho

4.2
Compare

Salesforce

4.0
Compare

Thomson Reuters

4.0
Compare

Oracle Cerner

3.6
Compare
write
Share an Interview