Upload Button Icon Add office photos

Filter interviews by

Freshworks Lead Software Engineer Interview Questions, Process, and Tips

Updated 9 Oct 2024

Top Freshworks Lead Software Engineer Interview Questions and Answers

  • Q1. Square Root with Decimal Precision Problem Statement You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' wi ...read more
  • Q2. Longest Unique Substring Problem Statement Given a string input of length 'n', your task is to determine the length of the longest substring that contains no repeating c ...read more
  • Q3. Vertical Order Traversal Problem Statement You are given a binary tree, and the task is to perform a vertical order traversal of the values of the nodes in the tree. For ...read more
View all 13 questions

Freshworks Lead Software Engineer Interview Experiences

8 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Elevator travel, find the no. of hops
  • Ans. 

    The question is asking to calculate the number of hops an elevator needs to travel between floors.

    • Calculate the difference between the starting floor and the destination floor

    • Divide the difference by the maximum number of floors the elevator can travel in one hop

    • Round up the result to get the number of hops needed

  • Answered by AI
  • Q2. Beautiful Array
  • Q3. Transactions in spring boot
  • Ans. 

    Transactions in Spring Boot manage database transactions in a declarative way.

    • Spring Boot uses @Transactional annotation to mark a method as transactional.

    • Transactions can be managed at class level or method level.

    • Rollback can be configured based on specific exceptions.

    • Example: @Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class)

  • Answered by AI

Skills evaluated in this interview

Lead Software Engineer Interview Questions & Answers

user image kowsalya palani

posted on 24 Jul 2024

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Loop in a linked list and removing it
  • Ans. 

    Loop through the linked list to find and remove a specific node

    • Start at the head of the linked list and iterate through each node

    • Check if the current node matches the one to be removed

    • If found, update the pointers to skip over the node and remove it

    • Continue until the end of the list is reached

  • Answered by AI
  • Q2. Triplets in array of integers without duplicates
  • Ans. 

    Find all triplets in an array of integers without duplicates

    • Iterate through the array and for each element, find all pairs that sum up to the negative of that element

    • Use a set to store the seen elements to avoid duplicates

    • Time complexity can be improved to O(n^2) by sorting the array first

  • Answered by AI
Round 2 - Coding Test 

Basic Datastructures and ALgo questions medium to hard level

Skills evaluated in this interview

Lead Software Engineer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Square root (decimal)You have been given two integers 'N' and 'D' ... read more
asked in Freshworks
Q2. Longest Unique SubstringGiven a string input of length n, find th ... read more
asked in Freshworks
Q3. Vertical Order TraversalThe Ultimate Ninja Ankush is a straightfo ... read more
asked in Freshworks
Q4. Zig-Zag ConversionYou are given a string ‘S’ and an integer ‘ROW’ ... read more
asked in Epsilon
Q5. If we have 2 tables with the same schema, one table has indexes a ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Find max square in matrix
  • Ans. 

    Iterate through the matrix to find the largest square of 1s

    • Iterate through each cell in the matrix

    • For each cell, check if it is part of a square of 1s by checking the cells to the right, below, and diagonally right-down

    • Keep track of the size of the largest square found

  • Answered by AI
  • Q2. Multithreadinh concepts
  • Q3. Message queue scenarios

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find all square matrices in a given matrix
  • Ans. 

    To find all square matrices in a given matrix, iterate through each cell as the top left corner of a potential square matrix and check if all elements within the square are the same.

    • Iterate through each cell in the matrix as the top left corner of a potential square matrix

    • For each cell, check if all elements within the square formed by the cell are the same

    • If all elements are the same, consider it as a square matrix

  • Answered by AI

Skills evaluated in this interview

Freshworks interview questions for designations

 Lead Engineer

 (2)

 Software Engineer

 (6)

 Senior Software Engineer

 (12)

 Staff Software Engineer

 (2)

 Java Software Engineer

 (1)

 Senior Software Engineer 2

 (2)

 Senior Staff Software Engineer

 (1)

 QA Lead

 (2)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. LinkedList, Tress
Round 2 - Technical 

(1 Question)

  • Q1. System Design concepts and case study

Get interview-ready with Top Freshworks Interview Questions

I applied via Approached by Company and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Implement hashmap in java
  • Ans. 

    Implementing hashmap in Java

    • Create an array of linked lists to store key-value pairs

    • Hash the key to get the index of the array

    • Insert the key-value pair at the index in the linked list

    • Handle collisions by chaining

    • Implement methods like put(), get(), remove()

    • Use generics to allow any type of key-value pairs

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design round related to chat application
Round 3 - Technical 

(1 Question)

  • Q1. Design round, system design general questions
Round 4 - Behavioral 

(1 Question)

  • Q1. General discussions about team and tech stack

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview rounds were ok but no proper feedback was communicated

Skills evaluated in this interview

I was interviewed in Dec 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Two DSA Problems:
 Explain anyone Design pattern you used
It was a recruitment drive happened on Saturday

  • Q1. 

    Square Root with Decimal Precision Problem Statement

    You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' with a precision up to 'D' decimal pl...

  • Ans. Bruteforce
    • We will find the integer part and decimal part of the answer separately.
    • First, we will find an integral part.
    • We will declare the answer variable where we will store the answer.
    • Your answer could be between 1 and N so we will iterate through all the numbers from 1 to N.
      • Let’s say we are currently at number i.
      • If i ^ 2 = N then i is the exact answer so we will return i.
      • If i ^ 2 < N then i could be a possible an...
  • Answered Anonymously
  • Q2. 

    Longest Unique Substring Problem Statement

    Given a string input of length 'n', your task is to determine the length of the longest substring that contains no repeating characters.

    Explanation:

    A substri...

  • Ans. All Substring Approach
    • Create all the substrings of the string.
    • For every substring, check if it consists of unique characters.
    • To check if the substring has duplicate characters, we will use a HashSet. We will iterate through all the characters in the string and put them into the set one by one. Before putting one character, we check if the set already contains it. If it does, the substring doesn't contain unique charact...
  • Answered Anonymously
Round 2 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

2 Coding questions. Expected to write in 1 hr

  • Q1. 

    Vertical Order Traversal Problem Statement

    You are given a binary tree, and the task is to perform a vertical order traversal of the values of the nodes in the tree.

    For a node at position ('X', 'Y'), th...

  • Ans. Efficient Approach

    The intuition is to find the breadth of the tree first so that we can beforehand know the maximum horizontal distance and minimum horizontal distance of a node from the root node. We can use the absolute value of minimum horizontal distance as an offset. Now we can use an array/list visited to store the visited nodes where ith element will store the node at (i - offset”) distance horizontally from the...

  • Answered Anonymously
  • Q2. 

    Power Calculation Problem Statement

    Given a number x and an exponent n, compute xn. Accept x and n as input from the user, and display the result.

    Note:

    You can assume that 00 = 1.

    Input:
    Two integers...
  • Ans. Using while() loop

    Take input in two variable x and n. Create a variable ans and initialize it to 1

    Run a while loop till n > 0. In each iteration mutilply your ans with x. Finally print ans.

    Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously
Round 3 - Coding Test 

Round duration - 60 Minutes
Round difficulty - Medium

It was a high level round. Checking what are different components and how they interact

Round 4 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

This was the managerial round. It was about technical skills evaluation

  • Q1. 

    Zig-Zag Conversion Problem Statement

    You are given a string S and an integer ROW. Your task is to convert the string into a zig-zag pattern on a given number of rows. After the conversion, output the stri...

  • Ans. Pattern Formation

    Consider the case where the number of rows is equal to 10, and everything has a 0 based indexing. In that case, the input string's indexes form the given pattern:

    Here Step-2 involves passing through the lower part of the zig-zag, and Step-1 involves passing the upper part of the zig-zag.

     

    Using some pattern recognition we can find all the indices that lie in a particular row. Let’s say we need to f...

  • Answered Anonymously
  • Q2. Can you describe the architecture of your current project?
Round 5 - Coding Test 

Round duration - 60 Minutes
Round difficulty - Easy

Director round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Lead Software Engineer in HyderabadEligibility criteriaAble to work on any languageFreshworks interview preparation:Topics to prepare for the interview - DSA, Algorithm, System Designs, Current Project ArchitectureTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Medium Level DSA - Trees, Arrays, Strings
Tip 2 : High Level Design - Start with basic system then P1 Requirements
Tip 3 : Practice writing code. Online Coding round will be there

Application resume tips for other job seekers

Tip 1 : Keep it small. Only projects, Tech stacks, achievements
Tip 2 : Write those Tech stacks and projects in which you are expert

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

It covers easy to medium programming using basic data structures like hash, stack, linked list etc

Interview Preparation Tips

Topics to prepare for Freshworks Lead Software Engineer interview:
  • Data structre
  • Distributed system
  • Web Application
  • AWS
  • Kubernetes

Interview questions from similar companies

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

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

Round 1 - HR 

(1 Question)

  • Q1. Strengths and weakness
Round 2 - Coding Test 

Question was on Java streams for string

Round 3 - Technical 

(1 Question)

  • Q1. Lots of questions on java, spring boot, design patterns, scalability, concurrency

I applied via Referral and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked the questions like scenario based question. Dot net core, web api and angular question. Mainly they concentrate on solid principles and design patterns questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good .

Freshworks Interview FAQs

How many rounds are there in Freshworks Lead Software Engineer interview?
Freshworks interview process usually has 1-2 rounds. The most common rounds in the Freshworks interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Freshworks Lead Software Engineer 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 Data Structures, Information Security, Open Source, Python and Distribution System.
What are the top questions asked in Freshworks Lead Software Engineer interview?

Some of the top questions asked at the Freshworks Lead Software Engineer interview -

  1. Triplets in array of integers without duplica...read more
  2. Find all square matrices in a given mat...read more
  3. Loop in a linked list and removing...read more

Tell us how to improve this page.

Freshworks Lead Software Engineer Interview Process

based on 7 interviews

1 Interview rounds

  • Technical Round
View more
Freshworks Lead Software Engineer Salary
based on 184 salaries
₹17.2 L/yr - ₹50 L/yr
55% more than the average Lead Software Engineer Salary in India
View more details

Freshworks Lead Software Engineer Reviews and Ratings

based on 31 reviews

2.9/5

Rating in categories

2.9

Skill development

3.1

Work-life balance

3.2

Salary

2.6

Job security

2.8

Company culture

2.6

Promotions

2.7

Work satisfaction

Explore 31 Reviews and Ratings
Senior Software Engineer
284 salaries
unlock blur

₹10.6 L/yr - ₹36 L/yr

fresher
249 salaries
unlock blur

₹1 L/yr - ₹5.2 L/yr

Lead Software Engineer
184 salaries
unlock blur

₹17.2 L/yr - ₹50 L/yr

Software Engineer
179 salaries
unlock blur

₹5.9 L/yr - ₹17 L/yr

Product Specialist
111 salaries
unlock blur

₹5 L/yr - ₹10.9 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