Upload Button Icon Add office photos

Filter interviews by

Clear (1)

SaaS Labs Software Development Engineer Interview Questions and Answers

Updated 26 Jul 2022

SaaS Labs Software Development Engineer Interview Experiences

1 interview found

I applied via Campus Placement

Round 1 - Coding Test 

Coding questions with some development related questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about classic DSA questions. The interviewer was friendly.
Round 3 - Technical 

(1 Question)

  • Q1. In-depth discussion of my projects and optimizations that could be done. The interviewer was friendly, and it was quite a learning experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Work well on your resume and the projects. You should be thorough with everything you've written on your resume.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. N a line where words are separated by spaces, , and capitalize first letter of the reversed word. Other letters of the word should be in small. Input : “how are you?” → Output: “Woh Era ?uoy”
  • Ans. 

    The program capitalizes the first letter of each reversed word in a sentence.

    • Split the sentence into an array of words using space as a delimiter.

    • Reverse each word in the array and capitalize the first letter.

    • Join the modified words back into a sentence.

  • Answered by AI
  • Q2. He second question reduced to finding maximum weight matching in a bipartite graph. Not many people would have done this (maybe none)
  • Q3. There are 2 sets of countries. One set will donate clothes (something of this sort) and anotherset will accept clothes. A country can be in only 1 of the sets. The amount of clothes donated is also given. ...

Interview Preparation Tips

Round: Test
Experience: There were about 20 MCQs (30 minutes) to be done after the coding section. MCQs were totally nonsense. Can be done in 10 mins.For coding section 60 mins.  It was hosted on Hackerrank.
Duration: 90 minutes
Total Questions: 2

Round: Technical Interview
Experience: After this, selected candidates were interviewed that consists of 4 rounds and discussion was mostly on your CV and data structure problems.

General Tips: Be honest with your interviewer. If you are not comfortable in 1 topic, tell your interviewer honestly. Do well in other areas. Look for hints from the interviewer if you get stuck. They want to see how you approach a problem.
Skills: Algortihm, Data structure
College Name: IIT DELHI
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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2022. 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 Resume tips
Round 2 - Coding Test 

Easy round a hackerrank test with easy to medium problems

Round 3 - Technical 

(1 Question)

  • Q1. Question based on binary search
Round 4 - HR 

(1 Question)

  • Q1. Nothing much just the offer discussion
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic DS question like dutch flag problem.

Round 2 - Technical 

(2 Questions)

  • Q1. Implement debounce function
  • Ans. 

    Debounce function delays the execution of a function until after a specified amount of time has passed since the last time it was invoked.

    • Create a function that takes a function and a delay time as parameters

    • Use setTimeout to delay the execution of the function

    • Use clearTimeout to reset the timer if the function is invoked again within the delay time

  • Answered by AI
  • Q2. Closure based questions.
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
Moderate
Process Duration
-
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - Coding Test 

Hacker rank evaluation with three questions

Round 2 - Technical 

(2 Questions)

  • Q1. Android fundamentals
  • Q2. Lifecycle methods and synchronization
Round 3 - Technical 

(2 Questions)

  • Q1. Comparator based problem solving
  • Q2. Binary tree based Hashmap question
Round 4 - HR 

(1 Question)

  • Q1. Usual behavior fit questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Live coding with interviewer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with dsa and system design. Having aws knowledge is added advantage.
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

SaaS Labs Interview FAQs

How many rounds are there in SaaS Labs Software Development Engineer interview?
SaaS Labs interview process usually has 3 rounds. The most common rounds in the SaaS Labs interview process are Coding Test, One-on-one Round and Technical.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Phronesis Partners

No Interviews

INTERVIEWS

Publicis Sapient

No Interviews

INTERVIEWS

Hp Electronics

No Interviews

INTERVIEWS

Unacademy

No Interviews

INTERVIEWS

Tata Projects

No Interviews

INTERVIEWS

Lummus Technology

No Interviews

INTERVIEWS

Procol

No Interviews

INTERVIEWS

Lumiq

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 516 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
Druva Interview Questions
3.7
 • 25 Interviews
Chargebee Interview Questions
3.9
 • 16 Interviews
CleverTap Interview Questions
3.6
 • 15 Interviews
WebEngage Interview Questions
4.0
 • 15 Interviews
Postman Interview Questions
3.6
 • 11 Interviews
Acviss Interview Questions
4.3
 • 7 Interviews
View all
SaaS Labs Software Development Engineer Salary
based on 4 salaries
₹14 L/yr - ₹23 L/yr
37% more than the average Software Development Engineer Salary in India
View more details

SaaS Labs Software Development Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Product Support Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineering Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sde1
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SaaS Labs with

Freshworks

3.5
Compare

Zoho

4.3
Compare

Chargebee

3.9
Compare

CleverTap

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent