Upload Button Icon Add office photos

ThoughtWorks

Compare button icon Compare button icon Compare

Filter interviews by

ThoughtWorks Interview Questions, Process, and Tips

Updated 27 Feb 2025

Top ThoughtWorks Interview Questions and Answers

View all 73 questions

ThoughtWorks Interview Experiences

Popular Designations

145 interviews found

Devops Interview Questions & Answers

user image Anonymous

posted on 26 Mar 2024

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

I was shared a codebase 2-3 days earlier and I had to find infrastructure issues in the code. Had to fix those issues using terraform

Devops Interview Questions asked at other Companies

Q1. How will you setup a microservice architecture application simple testing environment and deployment pipeline using kubernetes, containers, jenkins and available Cloud services.
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Case Study 

JOY of energy project checks only solid principles asks question for every letter you type for developing a feature

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Just focus on the basics of pyspark.

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Great coding test. provided a code base and was asked to find bugs in the code.

Round 2 - HR 

(1 Question)

  • Q1. Final HR round discussion to check leadership and team spirit

Senior Support Engineer Interview Questions asked at other Companies

Q1. 1. How you would troubleshoot a process hanging? 2. How would you troubleshoot slow system performance? 3. Network latency issue? 4.Cluster failover issue? 4. Application unable to start issue? 5. Last time you used your skills to handle an... read more
View answer (1)

ThoughtWorks interview questions for popular designations

 Application Developer

 (23)

 Senior Consultant

 (17)

 Consultant

 (13)

 Software Developer

 (8)

 Software Engineer

 (7)

 Business Analyst

 (7)

 Lead Consultant

 (5)

 Infrastructure Consultant

 (4)

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

(1 Question)

  • Q1. OOP questions , clean coding

Top ThoughtWorks Application Developer Interview Questions and Answers

Q1. 2. How will you design a database to manage the songs playlist on Spotify?
View answer (1)

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)

Get interview-ready with Top ThoughtWorks Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

30 mins round and 1 coding question

Round 2 - Assignment 

Development of a feature

Interview Preparation Tips

Interview preparation tips for other job seekers - company is having helpful people

Full Stack Software Developer Interview Questions asked at other Companies

Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions strings in Java This,super keywords Java problems like palindrome, prime number,and so many problems and logics Why java is platform independent Why java is not platform dependen... read more
View answer (1)

Consultant Interview Questions & Answers

user image Anonymous

posted on 22 Jun 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Two question was asked to solve using PySpark.
Word Count Coding Question was asked with Test Cases.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Question on PySpark Architecture
  • Q2. PySpark Coding Question

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Asssignment on docker

AWS Cloud and DevOps Engineer Interview Questions asked at other Companies

Q1. What is a Persistent Volume (PV) and a Persistent Volume Claim (PVC) in Kubernetes, and how do they relate to stateful applications?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Python basic questions
  • Q2. Why python is used for data science
  • Ans. 

    Python is used for data science due to its simplicity, readability, extensive libraries, and community support.

    • Python is easy to learn and read, making it accessible for beginners and experts alike

    • Python has a wide range of libraries like NumPy, Pandas, and Scikit-learn for data manipulation and analysis

    • Python has a strong community support with active forums and resources for data science enthusiasts

    • Python's versatili...

  • Answered by AI
  • Q3. Questions related to projects
  • Q4. Hasmap working on the backend
  • Ans. 

    HashMap is a data structure commonly used in backend development for efficient key-value storage and retrieval.

    • HashMap is a collection that stores key-value pairs and allows for fast retrieval of values based on keys.

    • It is commonly used in backend development for caching, session management, and data storage.

    • Example: HashMap employeeSalaries = new HashMap<>(); employeeSalaries.put("Alice", 50000); int

  • Answered by AI

Skills evaluated in this interview

Top ThoughtWorks Application Developer Interview Questions and Answers

Q1. 2. How will you design a database to manage the songs playlist on Spotify?
View answer (1)

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sort 0,1 in ascending order
  • Ans. 

    Sort an array of 0s and 1s in ascending order

    • Use a sorting algorithm like bubble sort or counting sort

    • Count the number of 0s and 1s and then reconstruct the array

    • Alternatively, use two pointers approach to swap 0s and 1s

  • Answered by AI

Skills evaluated in this interview

Associate Application Developer Interview Questions asked at other Companies

Q1. Give an idea of an application of the financial domain and how it can help
View answer (1)

ThoughtWorks Interview FAQs

How many rounds are there in ThoughtWorks interview?
ThoughtWorks interview process usually has 2-3 rounds. The most common rounds in the ThoughtWorks interview process are Technical, Coding Test and HR.
How to prepare for ThoughtWorks 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 ThoughtWorks. The most common topics and skills that interviewers at ThoughtWorks expect are Agile, Open Source, TDD, Consulting and Distribution System.
What are the top questions asked in ThoughtWorks interview?

Some of the top questions asked at the ThoughtWorks interview -

  1. 2. How will you design a database to manage the songs playlist on Spoti...read more
  2. 4. Design a list to show songs in the year in which they were publish...read more
  3. add a new feature using SOLID principles and explain your thought proc...read more
How long is the ThoughtWorks interview process?

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

Tell us how to improve this page.

ThoughtWorks Interview Process

based on 120 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Synechron Interview Questions
3.5
 • 362 Interviews
View all

ThoughtWorks Reviews and Ratings

based on 519 reviews

3.9/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.5

Salary

3.5

Job security

4.0

Company culture

3.0

Promotions

3.7

Work satisfaction

Explore 519 Reviews and Ratings
Senior Consultant
700 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Developer
658 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Consultant
248 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
151 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
100 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ThoughtWorks with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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