Upload Button Icon Add office photos

ThoughtSpot

Compare button icon Compare button icon Compare

Filter interviews by

ThoughtSpot Interview Questions and Answers

Updated 14 Mar 2025
Popular Designations

9 Interview questions

A Software Developer Intern was asked 5mo ago
Q. Given a string, how can we find the minimum length substring whose sum is greater than or equal to a specified target?
Ans. 

Use sliding window technique to find minimum length substring with sum >= target.

  • Initialize two pointers at start of string

  • Expand window by moving right pointer until sum >= target

  • Shrink window by moving left pointer while updating minimum length

  • Repeat until end of string is reached

View all Software Developer Intern interview questions
A Software Developer Intern was asked 5mo ago
Q. What is the index of the first occurrence where a pattern string matches with a text string?
Ans. 

The index of the first occurrence where a pattern string matches with a text string.

  • Use string searching algorithms like Knuth-Morris-Pratt or Boyer-Moore for efficient pattern matching.

  • Iterate through the text string and check for matches with the pattern string.

  • Return the index of the first occurrence where the pattern matches with the text.

View all Software Developer Intern interview questions
A Software Developer Intern was asked 10mo ago
Q. Implement a persistence stack with constant time operations
Ans. 

Implement a persistence stack with constant time operations

  • Use a combination of a stack and a hashmap to achieve constant time operations for push, pop, and get operations

  • Maintain a stack to store the elements and a hashmap to store the index of each element in the stack

  • When pushing an element, add it to the stack and update its index in the hashmap

  • When popping an element, remove it from the stack and also remove ...

View all Software Developer Intern interview questions
A Mts Software Engineer was asked
Q. Design the LLD of an LRU cache.
Ans. 

Design an LRU (Least Recently Used) cache to efficiently store and retrieve data with limited capacity.

  • Use a hash map for O(1) access to cache items.

  • Use a doubly linked list to maintain the order of usage.

  • When adding a new item, if the cache exceeds capacity, remove the least recently used item.

  • Example: For a cache of capacity 2, adding (1,1) and (2,2), then (3,3) removes (1,1).

  • Implement 'get' to return the value ...

View all Mts Software Engineer interview questions
A Senior Software Engineer was asked
Q. Design WhatsApp.
Ans. 

Design a messaging app like Whatsapp

  • Implement end-to-end encryption for secure messaging

  • Allow users to send text messages, images, videos, and documents

  • Include features like group chats, voice and video calls, status updates

  • Provide option for users to share their location

  • Develop a user-friendly interface with customizable settings

View all Senior Software Engineer interview questions
A Senior Sdet Engineer was asked
Q. Design a library for API testing.
Ans. 

A library for API testing that provides a set of functions and utilities to simplify the testing process.

  • The library should have functions to send HTTP requests and validate responses.

  • It should support different authentication methods like OAuth, JWT, etc.

  • The library should handle common API testing scenarios like testing CRUD operations, handling different HTTP methods, etc.

  • It should provide utilities for data-dr...

View all Senior Sdet Engineer interview questions
A Software Developer Intern was asked 10mo ago
Q. Median of two sorted arrays and OOPs basics
Ans. 

Finding the median of two sorted arrays and discussing OOPs basics

  • To find the median of two sorted arrays, merge the arrays and then calculate the median

  • OOPs basics include concepts like encapsulation, inheritance, polymorphism, and abstraction

  • Example: Median of [1, 3] and [2] is 2.0

View all Software Developer Intern interview questions
Are these interview questions helpful?
A Sdet Engineer was asked
Q. Promises in Javascript
Ans. 

Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

  • Promises help in handling asynchronous operations in a more organized manner.

  • They can be in three states: pending, fulfilled, or rejected.

  • Promises can be chained using .then() method to handle success and failure cases.

  • They can also be used with async/await for more readable asynchronous code.

View all Sdet Engineer interview questions
A Senior Sdet Engineer was asked
Q. Types of load balancing
Ans. 

Load balancing is a technique used to distribute network traffic across multiple servers to ensure optimal performance and availability.

  • Types of load balancing include: round robin, least connections, IP hash, and weighted round robin.

  • Round robin distributes traffic evenly across servers in a sequential manner.

  • Least connections directs traffic to the server with the fewest active connections.

  • IP hash uses the clien...

View all Senior Sdet Engineer interview questions

ThoughtSpot Interview Experiences

19 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

A 90-minute coding test on HackerRank, which includes one medium, one easy, and one hard question.

Round 2 - Technical 

(2 Questions)

  • Q1. What is the index of the first occurrence where a pattern string matches with a text string?
  • Ans. 

    The index of the first occurrence where a pattern string matches with a text string.

    • Use string searching algorithms like Knuth-Morris-Pratt or Boyer-Moore for efficient pattern matching.

    • Iterate through the text string and check for matches with the pattern string.

    • Return the index of the first occurrence where the pattern matches with the text.

  • Answered by AI
  • Q2. Given a string, how can we find the minimum length substring whose sum is greater than or equal to a specified target?
  • Ans. 

    Use sliding window technique to find minimum length substring with sum >= target.

    • Initialize two pointers at start of string

    • Expand window by moving right pointer until sum >= target

    • Shrink window by moving left pointer while updating minimum length

    • Repeat until end of string is reached

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Focus is on linux. Troubleshooting on linux regarding performance, CPU, disk etc
  • Q2. Linux commands to perform certain task if you know cloud basics of cloud SG VPC EC2 instance
  • Q3. Linux network troubleshooting and basics
Round 2 - Technical 

(1 Question)

  • Q1. Focused on advanced linux TS

Interview Preparation Tips

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

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

Round 1 - Coding Test 

There were 3 questions in the online assessment.

1 - Binary Search
2 - DP
3 - Graphs

Round 2 - Technical 

(1 Question)

  • Q1. Implement a persistence stack with constant time operations
  • Ans. 

    Implement a persistence stack with constant time operations

    • Use a combination of a stack and a hashmap to achieve constant time operations for push, pop, and get operations

    • Maintain a stack to store the elements and a hashmap to store the index of each element in the stack

    • When pushing an element, add it to the stack and update its index in the hashmap

    • When popping an element, remove it from the stack and also remove its i...

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

(1 Question)

  • Q1. Median of two sorted arrays and OOPs basics
  • Ans. 

    Finding the median of two sorted arrays and discussing OOPs basics

    • To find the median of two sorted arrays, merge the arrays and then calculate the median

    • OOPs basics include concepts like encapsulation, inheritance, polymorphism, and abstraction

    • Example: Median of [1, 3] and [2] is 2.0

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 14 Mar 2025

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

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Experience with sales ops and systems
  • Q2. Working in gtm teams

Interview Preparation Tips

Interview preparation tips for other job seekers - Work with Lauren and Justin. Both were amazing.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 2 rounds, 2 coding questions in each round. Managerial round.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hr and it is pretty easy and having snippets technical questions etc

Round 2 - Coding Test 

I didn't selected for second round

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare coding basic should be strong in basic and study the aptitude and thats pretty easy

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Promises in Javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises help in handling asynchronous operations in a more organized manner.

    • They can be in three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() method to handle success and failure cases.

    • They can also be used with async/await for more readable asynchronous code.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. React fundamentals
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join our company
  • Q2. Notice period, joining date etc

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leet code problem
Medium hard

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy to Medium Leetcode questions

Round 2 - Technical 

(1 Question)

  • Q1. Easy Schema design and technical deep dive
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Poc experience and RFP
  • Q2. Bi experience and demos

Top trending discussions

View All
Office Jokes
1w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about ThoughtSpot?
Ask anonymously on communities.

ThoughtSpot Interview FAQs

How many rounds are there in ThoughtSpot interview?
ThoughtSpot interview process usually has 2-3 rounds. The most common rounds in the ThoughtSpot interview process are Coding Test, Technical and Resume Shortlist.
How to prepare for ThoughtSpot 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 ThoughtSpot. The most common topics and skills that interviewers at ThoughtSpot expect are Analytics, Recruitment, Continuous Improvement, Python and Javascript.
What are the top questions asked in ThoughtSpot interview?

Some of the top questions asked at the ThoughtSpot interview -

  1. Given a string, how can we find the minimum length substring whose sum is great...read more
  2. What is the index of the first occurrence where a pattern string matches with a...read more
  3. Implement a persistence stack with constant time operati...read more
How long is the ThoughtSpot interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 15 interview experiences

Difficulty level

Easy 13%
Moderate 88%

Duration

Less than 2 weeks 88%
2-4 weeks 13%
View more

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 60 Interviews
ZIGRAM Interview Questions
3.4
 • 39 Interviews
RGBSI Interview Questions
3.3
 • 27 Interviews
MapmyIndia Interview Questions
3.7
 • 26 Interviews
Fingent Interview Questions
4.2
 • 25 Interviews
Twilio Interview Questions
3.9
 • 24 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
View all

ThoughtSpot Reviews and Ratings

based on 32 reviews

4.0/5

Rating in categories

3.7

Skill development

3.5

Work-life balance

3.9

Salary

3.3

Job security

3.6

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 32 Reviews and Ratings
Member of Technical Staff

Bangalore / Bengaluru

2-7 Yrs

₹ 18-45 LPA

Explore more jobs
Software Engineer
45 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Member Technical Staff
32 salaries
unlock blur

₹12.5 L/yr - ₹50 L/yr

Technical Staff Member 3
15 salaries
unlock blur

₹22 L/yr - ₹59 L/yr

QA Engineer
13 salaries
unlock blur

₹3.7 L/yr - ₹13.8 L/yr

Solution Analyst
12 salaries
unlock blur

₹5.5 L/yr - ₹9.5 L/yr

Explore more salaries
Compare ThoughtSpot with

Aurigo

4.7
Compare

Prime Focus Technologies

3.3
Compare

Vyapar

3.5
Compare

MapmyIndia

3.7
Compare
write
Share an Interview