FreshWorks - SSE | Bangalore | June 2022 | Reject

freshworks logo
freshworks
SDE IIBangalore4.9 yearsRejected
August 3, 20221 reads

Summary

I interviewed for an SSE role at FreshWorks in Bangalore, consisting of three comprehensive rounds: a coding round, a system design round, and a bar raiser round. Despite positive feedback in the initial two rounds, I was ultimately rejected after the final bar raiser round.

Full Experience

Background

I applied for an SSE position at FreshWorks in Bangalore. I currently work at a product-based fintech company and have 4.9 years of experience, having graduated from a Tier-3 college.

Round 1: Technical (1 hour)

This was a coding round that began with my brief introduction and a discussion about the projects I had worked on. I was asked two coding questions:

  1. A rephrased version of Two Sum: Given prices of N items and X amount of money, I needed to find if I could buy exactly two items that fully utilize the given money.
  2. A variation of the Coin Change problem (specifically Coin Change 2): Given an unlimited supply of coins with values 1, 2, and 3, and a target sum, I had to find the number of ways to make the sum, focusing on permutations. For example, for sum = 4, the output should be 7, with ways like [1,1,1,1], [1,1,2], [1,2,1], [2,1,1], [2,2],[3,1],[1,3].

I was able to successfully solve both questions, and the feedback from this round was positive.

Round 2: System Design (1 hour 30 minutes)

This round focused on system design, but also included some general technical questions. It started with a discussion about my roles and responsibilities at my current company. I was also asked to explain three complex technical issues I had worked on. The system design questions included:

  1. Designing a system similar to RedBus, specifically limiting the discussion to Search and Seat Booking functionality. We discussed high-level design, API design, database design, and handling race conditions during seat booking.
  2. Designing the trending page of a video platform like YouTube.
  3. How to prevent DDoS attacks.
  4. Steps to take if all requests to an endpoint are giving errors.
  5. How to identify the root cause when only some requests are intermittently erroring out.

I received positive feedback for this round as well.

Round 3: Bar Raiser Round (1 Hour 30 Minutes)

This round involved discussions on various technical aspects, mostly open-ended questions where the interviewer was interested in my thought process and problem-solving approach. Some of the questions I remember were:

  1. Implementing connection pooling.
  2. A detailed discussion on the TLS layer.
  3. Discussion on Spring Boot's advantages and the internal implementation of some Spring annotations.
  4. How metrics are sent from an application.

While I answered the questions, the interviewer was not entirely satisfied with some of my responses. I did not hear back from HR after this round, and based on the interviewer's feedback at the end, I understood that I would likely be rejected.

Interview Questions (11)

Q1
Two Sum with Exact Money
Data Structures & AlgorithmsEasy

You are given prices of N items and you have X amount of money. You are allowed to buy exactly two items. Find out if you can buy exactly two items with the given money such that money is used fully.

Q2
Coin Change Permutations
Data Structures & AlgorithmsMedium

You are given unlimited supply of coins of value 1,2 and 3 and a sum. find out the number of ways you can make the sum using the coins. the expectation was to find out the permutations. For example: sum = 4, output : 7, ways : [1,1,1,1] , [1,1,2], [1,2,1], [2,1,1], [2,2],[3,1],[1,3]

Q3
Design RedBus (Search & Seat Booking)
System Design

Design a System like RedBus. The discussion was limited to designing Search and Seat Booking functionality. High level design along with API and Database design was discussed. Handling race conditions during seat booking was also discussed.

Q4
Design YouTube Trending Page
System Design

Design the trending page of a Video Platform like YouTube.

Q5
Preventing DDoS Attacks
System Design

How do you prevent DDoS attack.

Q6
Troubleshooting All Endpoint Errors
Other

All request of an end point is giving error. Tell the different stpes you will take to handle it.

Q7
Troubleshooting Intermittent Endpoint Errors
Other

Only some request are erroring out intermittently, How you will identify the root cause.

Q8
Implementing Connection Pooling
Data Structures & Algorithms

Implementing connection poooling.

Q9
Discussion on TLS Layer
Other

Discussion on TLS layer

Q10
Spring Boot Advantages & Annotations
Other

Discussion on Spring boot advantages and internal implementation of some of the spring annotations.

Q11
Application Metrics Transmission
System Design

How metrices are sent from an application.

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!