Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Gupshup Senior Software Engineer Interview Questions and Answers

Updated 19 Dec 2024

Gupshup Senior Software Engineer Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Three coding problems were asked one was to print frequency of each character in a string, second was also similar to this problem unable to recall it and third problem was given an array of string and range from L to R find the nth character if all strings from L to R is concatenated and sorted. Apart from these three coding problems there were 10 easy MCQ's.

Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions on java and spring boot, annotations, oops concept.
  • Q2. Code LRU cache(with no updates), just to implement push and pop operation with given window size of 4.
Round 3 - Technical 

(1 Question)

  • Q1. It was a design round where I was asked to write class models of a in memory session management system without using tools like redis.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Discussion about past projects

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions about past projects
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Instahyre and was interviewed before Aug 2022. There were 5 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Ruby on Rails basic concept questions, Writing routes, DBMS basic questions
  • Q2. Program to reverse a string without using reverse method
  • Ans. 

    Use a loop to iterate through the string and build a new reversed string.

    • Create an empty string to store the reversed result.

    • Iterate through the original string from the end to the beginning.

    • Append each character to the new string.

    • Return the reversed string.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion on projects which we had worked upon. Round was with manager.
Round 4 - Case Study 

Behavioural questions related to organisations

Round 5 - HR 

(1 Question)

  • Q1. HR discussion, salary discussion and sharing offer letter

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview will be very smooth. Just concentrate on basics. That's it.

Skills evaluated in this interview

Gupshup interview questions for designations

 Senior Software QA Engineer

 (1)

 Software Engineer

 (1)

 Software Engineer II

 (1)

 Software Developer

 (6)

 Senior Software Developer 2

 (1)

 Senior Sdet Engineer

 (1)

 Lead Engineer

 (1)

 Site Reliability Engineer

 (3)

Interview questions from similar companies

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. Ds related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in DS and algo and should good logical thinking.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. There were 6 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Coding round with senior software engineer
Round 3 - One-on-one 

(1 Question)

  • Q1. Resume based discussion with lead software engineer
Round 4 - One-on-one 

(1 Question)

  • Q1. Resume based and coding round with hiring manager
Round 5 - One-on-one 

(1 Question)

  • Q1. Cross team resume based and coding round with a staff engineer
Round 6 - HR 

(1 Question)

  • Q1. Attitude and culture fit
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Very basic problem solving round

Round 2 - One-on-one 

(1 Question)

  • Q1. Medium level DSA problem solving round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Write a program that solves sudoku

Round 2 - Technical 

(1 Question)

  • Q1. How do you build a tiny URL Application?
  • Ans. 

    A tiny URL application is built by generating short aliases for long URLs, storing them in a database, and redirecting users to the original URL when the alias is accessed.

    • Generate a unique short alias for each long URL

    • Store the alias and corresponding long URL in a database

    • Implement a redirect mechanism to redirect users from the alias to the original URL

    • Handle edge cases like duplicate URLs, expired aliases, and inva

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Two questions asked:
1. Partition equal sum
2. find length largest region boolean matrix

Interview Preparation Tips

Topics to prepare for Freshworks Senior Software Engineer interview:
  • Hld
  • LLD
  • Coding
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Immediate higher number to right
  • Ans. 

    The immediate higher number to the right of each element in an array

    • Iterate through the array from right to left

    • For each element, compare it with the elements to its right to find the immediate higher number

    • Store the immediate higher number in a new array

  • Answered by AI
  • Q2. Count pair whose sum is perfect square.
  • Ans. 

    Count pairs in an array whose sum is a perfect square.

    • Iterate through the array and calculate the sum of each pair.

    • Check if the sum is a perfect square using a function.

    • Increment a counter if the sum is a perfect square.

    • Return the final count of pairs.

  • Answered by AI
  • Q3. Parking lot LLD
  • Q4. E Commerce HLD and LLD
  • Q5. Kth largest number in BST
  • Ans. 

    To find the Kth largest number in a Binary Search Tree (BST), we can perform an in-order traversal and keep track of the Kth largest element.

    • Perform an in-order traversal of the BST to get the elements in non-decreasing order.

    • Keep track of the Kth largest element while traversing the BST.

    • Return the Kth largest element once found.

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Gupshup Interview FAQs

How many rounds are there in Gupshup Senior Software Engineer interview?
Gupshup interview process usually has 2-3 rounds. The most common rounds in the Gupshup interview process are Technical, One-on-one Round and Resume Shortlist.
What are the top questions asked in Gupshup Senior Software Engineer interview?

Some of the top questions asked at the Gupshup Senior Software Engineer interview -

  1. Program to reverse a string without using reverse met...read more
  2. It was a design round where I was asked to write class models of a in memory se...read more
  3. Code LRU cache(with no updates), just to implement push and pop operation with ...read more

Recently Viewed

INTERVIEWS

ValGenesis

No Interviews

JOBS

yellow.ai

No Jobs

INTERVIEWS

Newt Global

5.6k top interview questions

INTERVIEWS

Newt Global

No Interviews

REVIEWS

Newt Global

No Reviews

REVIEWS

Gupshup

No Reviews

SALARIES

Gupshup

REVIEWS

ValGenesis

No Reviews

SALARIES

Gupshup

REVIEWS

DISYS

No Reviews

Tell us how to improve this page.

Gupshup Senior Software Engineer Interview Process

based on 5 interviews

Interview experience

3.6
  
Good
View more
Gupshup Senior Software Engineer Salary
based on 64 salaries
₹13 L/yr - ₹40 L/yr
54% more than the average Senior Software Engineer Salary in India
View more details

Gupshup Senior Software Engineer Reviews and Ratings

based on 6 reviews

3.3/5

Rating in categories

2.9

Skill development

4.3

Work-life balance

4.1

Salary

3.0

Job security

2.9

Company culture

2.3

Promotions

2.6

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineer
88 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
64 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Level 1
38 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Gupshup with

Twilio

3.9
Compare

Hike

3.6
Compare

InMobi

3.5
Compare

Paytm

3.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview