Upload Button Icon Add office photos

Gainsight

Compare button icon Compare button icon Compare

Filter interviews by

Gainsight Interview Questions and Answers

Updated 26 Mar 2025

Gainsight Interview Experiences

Popular Designations

25 interviews found

I applied via LinkedIn and was interviewed in Oct 2021. 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 tips
Round 2 - Coding Test 

Basic coding questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on locators Two coding questions. 1. On loops 2. Data structures
Round 4 - One-on-one 

(1 Question)

  • Q1. Same like round 3 Coding questions and selenium questions.
Round 5 - One-on-one 

(1 Question)

  • Q1. Manager round Logical and situation based questions
Round 6 - Aptitude Test 

Cognitive aptitude test

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics very well . They will check your thought process. Not output.

Software Development Engineer Test Interview Questions asked at other Companies

Q1. Tell me about yourself What is Software What is Framework What are the characteristics of Software What are different SDLC models available? What is Debugging? Difference between Validation and Verification? What is Software Scope? What are... read more
View answer (1)

I appeared for an interview in Apr 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical round with questions on Javascript mainly.

  • Q1. What happens when you call a function using the new keyword?
  • Ans. 

    Calling a function using the new keyword creates a new instance of the function's constructor.

    • Creates a new empty object

    • Binds 'this' to the new object

    • Adds a property to the new object called '__proto__' which points to the constructor function's prototype object

    • Returns the new object

  • Answered by AI
  • Q2. How can you import all exports of a file as an object in JavaScript?
  • Ans. 

    You can import all exports of a file as an object in JavaScript using the 'import * as' syntax.

    • Use the 'import * as' syntax followed by the object name and 'from' keyword to import all exports of a file as an object.

    • For example: import * as myExports from './myFile.js';

    • You can then access the exports using dot notation, like myExports.myFunction().

  • Answered by AI
  • Q3. What is the purpose of the 'this' operator in JavaScript?
  • Ans. 

    The 'this' operator in JavaScript refers to the current context or object.

    • Refers to the current object or context in which a function is being executed

    • Can be used to access properties and methods of the current object

    • The value of 'this' is determined by how a function is called

  • Answered by AI
  • Q4. What are arrow functions in JavaScript?
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions are defined using the '=>' syntax.

    • They have a shorter syntax compared to traditional function expressions.

    • They do not have their own 'this' keyword, instead they inherit it from the parent scope.

    • Example: const add = (a, b) => a + b;

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

Technical round with questions on Angular mainly.

  • Q1. What is AOT compilation in Angular?
  • Ans. 

    AOT compilation in Angular stands for Ahead-of-Time compilation, which compiles Angular templates and components during the build process.

    • AOT compilation improves the performance of Angular applications by pre-compiling the templates and components before the browser downloads and runs them.

    • It detects template errors during the build process rather than at runtime, leading to faster rendering and reduced bundle size.

    • AO...

  • Answered by AI
  • Q2. How are observables different from promises?
  • Ans. 

    Observables are streams that can emit multiple values over time, while promises can only emit a single value.

    • Observables can emit multiple values over time, while promises can only emit a single value.

    • Observables are cancellable, while promises are not.

    • Observables support operators like map, filter, and reduce for transforming data streams, while promises do not.

    • Observables are lazy, meaning they do not run until they ...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAGainsight interview preparation:Topics to prepare for the interview - HTML, CSS, Javascript, Angular,Web Development, JavaTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Gainsight Front end Developer Interview Questions and Answers

Q1. What happens when you call a function using the new keyword?
View answer (1)

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. 1. Find triplet in an array to sum up to a given number?
  • Ans. 

    Find triplet in an array to sum up to a given number.

    • Sort the array in ascending order.

    • Iterate through the array and fix the first element.

    • Use two pointers approach to find the other two elements that sum up to the given number.

  • Answered by AI
  • Q2. 2. Print a star pattern?
  • Ans. 

    Printing a star pattern using loops in programming.

    • Use nested loops to print the pattern

    • The outer loop controls the number of rows

    • The inner loop controls the number of stars to be printed in each row

    • Use string concatenation to build the pattern

    • Example: for a pattern with 5 rows, the first row will have 1 star, the second row will have 2 stars, and so on

  • Answered by AI
  • Q3. SQL query of finding aggregate salary for the division
  • Ans. 

    SQL query to find aggregate salary for a division

    • Use the GROUP BY clause to group the employees by division

    • Use the SUM function to calculate the total salary for each division

    • Include the division column in the SELECT statement

    • Example: SELECT division, SUM(salary) AS total_salary FROM employees GROUP BY division

  • Answered by AI
  • Q4. Difference between Abstract class vs Interface?
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods while Interface only has abstract methods.

    • Abstract class can have constructors while Interface cannot.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract class can have instance variables while Interface cannot.

    • Abstract class can provide default implementation for some methods while Interface canno...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For SDET initial round, they check on day to day basic things and you approach to their problem.

Skills evaluated in this interview

Sdet (Software Development Engineer in Test) Interview Questions asked at other Companies

Q1. 4) How to send the values without using sendkeys method?
View answer (3)

Interview Questionnaire 

3 Questions

  • Q1. JS Prototypes, Object methods, arrow functions, this keyword
  • Q2. Angular Lifecycle hooks, Optimization, AOT compilation
  • Q3. RxJS Observable, callback vs Observable, Design patterns

Top Gainsight Front end Developer Interview Questions and Answers

Q1. What happens when you call a function using the new keyword?
View answer (1)

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

Gainsight interview questions for popular designations

 Software Engineer

 (7)

 Sdet

 (3)

 Front end Developer

 (2)

 Sdet Automation Test Engineer

 (2)

 Associate Software Engineer

 (2)

 Senior Web Developer

 (1)

 Lead Engineer

 (1)

 Technical Writer

 (1)

Interview Questionnaire 

6 Questions

  • Q1. Print the nodes which are at the boundaries of a binary tree. (Leaf Nodes + Top view)
  • Ans. 

    Print the nodes at the boundaries of a binary tree (leaf nodes + top view).

    • Traverse the tree in pre-order and keep track of the level of each node

    • Add the leftmost and rightmost nodes of each level to the result

    • For top view, traverse the tree in level-order and add the first node of each level to the result

  • Answered by AI
  • Q2. A matrix consists of integers. A bomb has to be dropped at a cell in the matrix and its impact will get cascaded to the all the adjacent (top, bottom, right, left) cells if the adjacent cell has value 1 gr...
  • Ans. 

    Find minimum bombs to clear matrix by cascading impact to adjacent cells with value 1 greater than the bombed cell.

    • Create a 2D matrix of integers

    • Iterate through each cell and drop a bomb, then check its adjacent cells

    • If an adjacent cell has value 1 greater than the bombed cell, drop a bomb on that cell as well

    • Repeat until no more cells can be bombed

    • Count the number of bombs dropped to clear the matrix

  • Answered by AI
  • Q3. Design Pattern - Command & Factory
  • Q4. Dependency Injection & IOC in Spring
  • Ans. 

    Dependency Injection & IOC in Spring

    • Dependency Injection is a design pattern that allows objects to be loosely coupled and easily testable

    • In Spring, IOC (Inversion of Control) is used to manage dependencies and inject them into objects at runtime

    • IOC container in Spring is responsible for creating and managing objects and their dependencies

    • Spring supports different types of dependency injection such as constructor injec

  • Answered by AI
  • Q5. Design book my show.
  • Q6. Performance related questions & concurrency

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)

Gainsight Interview FAQs

How many rounds are there in Gainsight interview?
Gainsight interview process usually has 2-3 rounds. The most common rounds in the Gainsight interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Gainsight 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 Gainsight. The most common topics and skills that interviewers at Gainsight expect are Adobe, Consulting, Predictive Analytics, Vista and Customer Satisfaction.
What are the top questions asked in Gainsight interview?

Some of the top questions asked at the Gainsight interview -

  1. A matrix consists of integers. A bomb has to be dropped at a cell in the matrix...read more
  2. 1. Find triplet in an array to sum up to a given numb...read more
  3. Print the nodes which are at the boundaries of a binary tree. (Leaf Nodes + Top...read more
How long is the Gainsight interview process?

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

Tell us how to improve this page.

Gainsight Interview Process

based on 27 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 271 Interviews
Tiger Analytics Interview Questions
3.7
 • 225 Interviews
Altimetrik Interview Questions
3.8
 • 218 Interviews
Incedo Interview Questions
3.1
 • 182 Interviews
Xoriant Interview Questions
4.1
 • 182 Interviews
Globant Interview Questions
3.8
 • 173 Interviews
ThoughtWorks Interview Questions
3.9
 • 147 Interviews
Iris Software Interview Questions
4.0
 • 144 Interviews
Apexon Interview Questions
3.3
 • 141 Interviews
View all

Gainsight Reviews and Ratings

based on 105 reviews

4.0/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.8

Salary

3.4

Job security

4.2

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 105 Reviews and Ratings
Software Engineer
112 salaries
unlock blur

₹10 L/yr - ₹22 L/yr

Senior Software Engineer
83 salaries
unlock blur

₹13.5 L/yr - ₹28 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Lead Software Engineer
26 salaries
unlock blur

₹24 L/yr - ₹40.5 L/yr

Senior Solution Engineer
25 salaries
unlock blur

₹12.5 L/yr - ₹20.5 L/yr

Explore more salaries
Compare Gainsight with

Xoriant

4.1
Compare

Photon Interactive

4.0
Compare

CitiusTech

3.4
Compare

Iris Software

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